Click to See Complete Forum and Search --> : launch IE


nklein75
12-12-2002, 01:11 PM
With a VBSCRIPT I can launch an IE window with the following code:

Dim WinShell, substcmd
Set WinShell = WScript.CreateObject ("WScript.Shell")
substcmd = "c:\progra~1\intern~1\iexplore.exe" _ http://www.microsoft.com
WinShell.Run substcmd, 1, False
WScript.Quit

Question is can I do something like this in asp to launch an IE window??? Thanks

nklein75
12-13-2002, 08:37 AM
Basically yes I have a page, it does a browser check if it is not IE, then it sends them to an error page that says you must use IE. What I wanted to do was put a link or something on that page that will open up that webpage in IE.