PDA

Click to See Complete Forum and Search --> : Headers for downloading


Inhumanoid
Dec 21st, 2000, 05:10 PM
Im sending header to the browser to spawn a "save-as" dialog to download word-documents out of a database. It works fine in internet explorer but it does not work in Netscape:

Response.AddHeader "Content-type", "application/msword"
Response.AddHeader "Content-Disposition", "filename=" & Request.QueryString("DocName")
Response.AddHeader "Content-Transfer-Encoding", "binary"

Anybody now a fix to make it work in Netscape ?