Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Starting a .EXE from a .ASP page...
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00617524
Message ID:
00617570
Views:
17
This message has been marked as the solution to the initial question of the thread.
>Is there a way to start a .EXE that will run on the server like a application from a .ASP PAGE?
>
>a .exe IN vb OR vfp?


One way is by using the Windows Script Host.
<%
    set wshell = server.createobject("wscript.shell")
    wshell.run "c:\my.exe"
    set wshell = nothing
%>
Tom
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform