I have a file, and it is full path (plus the file name) is in this variable:
fileTemporary
i want to download that file to the client.
i do this:
HttpContext.Current.Response.TransmitFile(fileTemporary);
but nothing happen, i mean when i click the button, this file executes, but nothing is being downloaded to the client. i don't see any file on the browser of the client.
what mistake did i do please?
If you use MVC you can:
If you use ASP.NET or whatever you can use following (sorry, my old code, but you can understand approach):
Without reingeneering your solution:
If you would like browser to interpret you file right, you will need to specify header "Content-Type" more precise. Please see list of content types