In my asp.net application I have vbscript to open a local file.
Example:
window.open(file:\\C:\Rpt.doc)
This use to work fine for all operation systems and browsers but now it
doesn't. It still working on W2K machine but is not working on XP(sp2)
with IE(6.0.29sp2).
I tried to change from window.open to this but then some users are
getting script error when they closed the open file:
Dim objIEA
Set objIEA = CreateObject("InternetExplorer.Application")
objIEA.Visible = True
objIEA.Navigate urlName
While objIEA.Busy
Wend
Set objIEA = Nothing
Is anyone else having this problem? Is there another way to open a file
from the browser?
Any help would be great appreciated!!!
Thanks,
Deidre