hi!
how can I enter exe-file in asp (classic asp, not asp.net). I tried do it
this way (in IE 6.0):
<%@ Language=VBScript %>
<%
Dim WShell, ErrCode
Set WShell = CreateObject("WScript.Shell")
WShell.Run "F:\Inetpub\wwwroot\notepad.exe",5
Set WShell = Nothing
%>
any errors, but notepad did not on. only white page.
thank You.
Roman