As a side note, you may want to change this line
Response.AddHeader "Content-Disposition", "attachment; filename=" & sDisplayName
to
Response.AddHeader "Content-Disposition", "attachment; filename=""" & sDisplayName & """"
I had previously faced some issues in non-IE browsers and the above change fixed the issue.
Also, try and add the following line at the top of your asp page.
<%
Response.Buffer=True
Cheers!
Main Topics
Browse All Topics





by: ap_sajithPosted on 2006-06-27 at 22:44:07ID: 16998755
See if the fix explained in the article sorts out your issue. om/?kbid=3 08090
http://support.microsoft.c
Cheers!