B
BillH
I have an ASP page to download a CSV file using the following code
Response.ContentType="text/plain
Response.AddHeader "Content-disposition", "attachment; filename=Report.csv
Response.Write strCS
When I run this, I get the download dialog displayed twice. Any ideas how to solve this
Thank
Response.ContentType="text/plain
Response.AddHeader "Content-disposition", "attachment; filename=Report.csv
Response.Write strCS
When I run this, I get the download dialog displayed twice. Any ideas how to solve this
Thank