Displaying Save File Dialog in Asp.net web page
问题 I have a ASP.net page which writes a file to the local disk. I want to present the user a Save File dialog box and allow him to set the path to the folder. I know code like below can be used; Response.Clear(); Response.ContentType = "text/csv"; Response.AddHeader( "Content-Disposition", "attachment;filename=\"report.csv\"" ); // write your CSV data to Response.OutputStream here Response.End(); But it fixes filepath. I need to capture the filepath that the user selects. Is that possible in ASP