Board index » dotnet-framework-aspnet » problem on downlaod zip file via asp net application

problem on downlaod zip file via asp net application

2004-08-19 01:14:07 PM
when i try to download my zip file via my asp net program, the zip file will
be corrupted after i download, below is my code:
' Identify the file to download including its path.
Dim filepath As String = Server.MapPath("\eClinicApp\VISITD.ZIP")
' Identify the file name.
Dim filename As String = System.IO.Path.GetFileName(filepath)
Response.Clear()
' Specify the Type of the downloadable file.
' octet-stream
Response.ContentType = "application/octet-stream"
' Set the Default file name in the FileDownload dialog box.
Response.AddHeader("Content-Disposition", "attachment; filename="""
& filename & """")
' Download the file.
Response.WriteFile(filepath)
Response.Flush()
Any body know what happen, pls help
-
 

Re:problem on downlaod zip file via asp net application

Sharon,
When I treid that code in my Page_Load with nothing else it worked fine :(
Have you tried an different zip file or a non-zipped file?
Karl
"Sharon" <sha_wan@hotmail.com>wrote in message
Quote
when i try to download my zip file via my asp net program, the zip file
will
be corrupted after i download, below is my code:

' Identify the file to download including its path.
Dim filepath As String = Server.MapPath("\eClinicApp\VISITD.ZIP")

' Identify the file name.
Dim filename As String = System.IO.Path.GetFileName(filepath)

Response.Clear()

' Specify the Type of the downloadable file.
' octet-stream
Response.ContentType = "application/octet-stream"

' Set the Default file name in the FileDownload dialog box.
Response.AddHeader("Content-Disposition", "attachment;
filename="""
& filename & """")


' Download the file.
Response.WriteFile(filepath)

Response.Flush()



Any body know what happen, pls help




-