opening files in Netcape 7.2?

E

Eych

if I have Response.Redirect("file:///C:/Temp/test.txt") in code, in the
Netscape window I get "Object moved to here", where 'here' is
hyperlinked to "file:///C:/Temp/test.txt". I can drag the link and
open it in a new tab, but how can I get it to open initially?

thanks.
 
M

Mark Fitzpatrick

Response.Redirect emits an http oject moved code to the browser. Netscape
often informs users that the file is actually a redirect to a new location.
One of the ways you can get around this sometimes is to set the
response.buffer = true, then clear the buffer before you send the redirect.
It doesn't always do the trick, but it often does help.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top