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
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