So I have a download button on my C# asp form. Essentially it uses
Response.Redirect (fileNameHere);
to download the file. The problem with this method is that it tries to display the file in the browser. I would rather it give the user a Save As dialogue. What method should I call instead?
Response.Redirect (fileNameHere);
to download the file. The problem with this method is that it tries to display the file in the browser. I would rather it give the user a Save As dialogue. What method should I call instead?