Lynus
Technical User
- Apr 12, 2003
- 69
I am using the response.trasmitfile method and in firefox it works wonderfully. However in IE V6 and V7 it gets stuck on "Getting File Information" then eventually errors with unable to download the aspx thats supposed to be processing the tranfer. Here is my code:
Dim mypath As String = Server.MapPath("/Downloads/myfile.zip")
Response.ContentType = "application/zip"
Response.AddHeader("Content-Disposition", "attachment; filename=myfile.zip")
Response.TransmitFile(mypath)
I know its probably something simple that I am missing and could really use some help on this one. Thank you
Dim mypath As String = Server.MapPath("/Downloads/myfile.zip")
Response.ContentType = "application/zip"
Response.AddHeader("Content-Disposition", "attachment; filename=myfile.zip")
Response.TransmitFile(mypath)
I know its probably something simple that I am missing and could really use some help on this one. Thank you