|
 |
Quiz.zip
pic1-
Click to download
Dim filename=ftp://63.231.92.205/pic1.bmp as String = Request("ftp://63.231.92.205/pic1.bmp")
Response.ContentType = "application/image/bmp" ' set content
type depending on file requested ' in the next line, "Attachment"
means download dialog, "Inline" would mean load directly in
browser Response.AddHeader "Content-Disposition", "Attachment;p"
+ ftp://63.231.92.205/pic1.bmp Response.WriteFile(Server.MapPath(ftp://63.231.92.205/pic1.bmp))
Quiz.zip
426239.txt
|