I have web application(asp.net).is there any way to show a 'SAVE AS DIALOG BOX'(in browser) when user clicks the download button.i have tried several codes but i didn't get expected result.all are download the file normally to downloads(default download path of browser).is it possible to open save as dialog box in web browser
Save As Dialog box in asp.net
10.8k Views Asked by jyothis At
2
There are 2 best solutions below
2

Probably you're looking for download a file in asp.net? Please see sample below.
Response.ContentType = "application/pdf";
Response.AppendHeader("Content-Disposition", "attachment; filename=MyFile.pdf");
Response.TransmitFile(Server.MapPath("~/Files/MyFile.pdf"));
Response.End();
.htm, .html Response.ContentType = "text/HTML"; .txt Response.ContentType = "text/plain"; .doc, .rtf, .docx Response.ContentType = "Application/msword"; .xls, .xlsx Response.ContentType = "Application/x-msexcel"; .jpg, .jpeg Response.ContentType = "image/jpeg"; .gif Response.ContentType = "image/GIF"; .pdf Response.ContentType = "application/pdf";
Already answered: [Save dialog box to download file, Saving file from ASP.NET server to the client