Text file download dialog box for netscape browser 
Author Message
 Text file download dialog box for netscape browser

?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????..??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????


Tue, 27 Sep 2005 11:44:38 GMT  
 Text file download dialog box for netscape browser
so what's the question?

________________________________________
I got bored with my old signature,
so I changed it

Atrax. MVP, IIS
http://rtfm.atrax.co.uk/

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



Tue, 27 Sep 2005 13:00:00 GMT  
 Text file download dialog box for netscape browser
?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????..???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????..??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????>


Tue, 27 Sep 2005 13:53:07 GMT  
 Text file download dialog box for netscape browser

Hi,
   I already post the question for 2 times to the microsoft newsgroups
web site, but it still come out all the ?. Something wrong with this web
site?

Here is my question again.
I got the difficulty to download a text file in netscape browser but
it's work in IE browser.
The netscape problem is the file download does not come out the
open/save dialog box, it straight display the text file content on the
web page. IE got no problem to display the open/save dialog box to let
people to choose from.
Here is the code :

sFileName = "a.txt"
sFilePath= "C:\" & sFileName

set f=fso.GetFile(sFilePath)
sFileSize = f.size

   Const adTypeBinary = 1
   Response.Clear
   Set objStream = server.CreateObject ("ADODB.Stream")
   objStream.Open
   objStream.Type = adTypeBinary
   objStream.LoadFromFile sFilePath

   Response.AddHeader "Content-Disposition", "attachment; filename=" &
sFileName
   Response.AddHeader "Content-Length", sFileSize
   Response.Charset = "UTF-8"
   Response.ContentType = "text/plain"
   Response.BinaryWrite objStream.Read
   Response.Flush()

   objStream.Close
   Set objStream = Nothing

So how do make the script work in the netscape browser?

Thanks.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



Tue, 27 Sep 2005 13:59:59 GMT  
 Text file download dialog box for netscape browser
similar script works for me in NN - though you'd be better setting the
content-type to Application/unknown as I do.

________________________________________
I got bored with my old signature,
so I changed it

Atrax. MVP, IIS
http://rtfm.atrax.co.uk/

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



Tue, 27 Sep 2005 14:39:54 GMT  
 Text file download dialog box for netscape browser

Yes, it is works. Thanks

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



Tue, 27 Sep 2005 15:49:55 GMT  
 
 [ 6 post ] 

 Relevant Pages 

1. Download Files without File dialog box ?

2. Running a local bat file without the download dialog box prompt

3. Opening text file in a text box using common dialog

4. How to download a .zip file without dialog box

5. File browser dialog box

6. Automatic download without the dialog box - possible??

7. Bypass Open/Download Dialog Box

8. Forcing the Download Dialog Box

9. Text box text on new page text box

10. SIMPLE HELP NEEDED - Saving a text file using a common dialog box

11. Download jpeg file to the client using asp - Response.addheader ignored by Netscape

12. I need help reading text from a dialog box

 

 
Powered by phpBB® Forum Software