|
 |
asp_web_howto thread: Execute
Message #1 by "Chris Thompson" <cthompson@n...> on Thu, 5 Sep 2002 08:13:50 -0600
|
|
Is it possible either through ASP or VBScript to launch an exe
application?
Thanks,
Chris Thompson
-+-+-+-+-+-+-+-+-+-+-+-
cthompson@n...
xxx-xxx-xxxx
-+-+-+-+-+-+-+-+-+-+-+-
Message #2 by Vijay G <happygv@y...> on Thu, 5 Sep 2002 08:06:21 -0700 (PDT)
|
|
Using wscript.shell object you can do that. Which would be something like this.
set WsShell = CreateObject("WScript.Shell")
WsShell.Run <COMMAND> & " " & <PARAMETERS_IF_ANY>
regards,
Vijay.G
Chris Thompson wrote:Is it possible either through ASP or VBScript to launch an exe
application?
Thanks,
Chris Thompson
-+-+-+-+-+-+-+-+-+-+-+-
cthompson@n...
xxx-xxx-xxxx
-+-+-+-+-+-+-+-+-+-+-+-
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---------------------------------
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
|
|
 |