【发布时间】:2013-07-10 11:58:09
【问题描述】:
谁能告诉我如何使用非 Internet Explorer 浏览器(chrome 和 firefox)中的经典 asp(vbscript) 参数运行服务器端 exe
【问题讨论】:
标签: asp-classic vbscript
谁能告诉我如何使用非 Internet Explorer 浏览器(chrome 和 firefox)中的经典 asp(vbscript) 参数运行服务器端 exe
【问题讨论】:
标签: asp-classic vbscript
您的浏览器与此无关,因为这是服务器端。在服务器上,你可以试试这个:
<%
Set WshShell = Server.CreateObject("WScript.Shell")
WshShell.Run "c:\windows\notepad.exe"
Set WshShell= nothing
%>
它给我敲响了警钟,但我已经多年没有使用经典的 asp,所以需要检查一下。
【讨论】: