asp中可以使用WSH?
<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<%
Dim wshshell
Set WshShell=wscript.CreateObject("Wscript.Shell")
WshShell.Run("f://练习/vbtest/exe/good.exe")
%>
<P> </P>
</BODY>
运行时脚本出错
----Set WshShell=wscript.CreateObject("Wscript.Shell")
----WshShell.Run("f://练习/vbtest/exe/good.exe")
在VBSCRIPT中运行通过
good.exe为可执行文件
</HTML>