如何从传统的ASP运行服务器端的exe文件对非IE浏览器
问题描述:
任何机构可以告诉我如何从传统的ASP(VBScript)的参数与非Internet Explorer浏览器(Chrome和Firefox)中运行服务器端的exe
can any body tell me how to run server side exe with parameters from classic asp(vbscript) with non Internet Explorer browser (chrome and firefox)
答
您的浏览器没有什么关系了,因为这是服务器端。在服务器上,你可以试试这个:
Your browser doesn't have anything to do with that, as this is server-side. On the server , you could try this :
<%
Set WshShell = Server.CreateObject("WScript.Shell")
WshShell.Run "c:\windows\notepad.exe"
Set WshShell= nothing
%>
这摇铃我,但我没有用传统的ASP多年,因此将需要cheked。
It rings a bell to me, but I haven't used classic asp for years so it would need to be cheked.