Firstly, ASP 2.0 (bundled with IIS4 in 1997) is now completely obsolete -
for ASP Classic questions such as this, please post in:
microsoft.public.inetserver.asp.general
However, to get ASP 2.0 to launch a .NET app, you'll need to make sure that
the appropriate verision of the .NET Framework is installed on the webserver
on which IIS4 is running, and then use the Shell command - something like
(from memory):
<%
Set WSShell = Server.CreateObject("WScript.Shell")
WSShell.Run Server.MapPath("Program.exe")
Set WSShell = Nothing
%>
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.