A few weeks ago, I was trying to launch a server side application from ASP and Mark Sreeves posted the following code, which works great:
How would I then kill this application? DoesCode:Option Explicit Public Function RunExe(ByVal Filename As String) As Long On Error Resume Next Shell Filename 'return the error if any RunExe = Err.Number End Function
exist? If not, is there a better way?Code:kill Filename
Thanks!
dvst8




Reply With Quote