请教一段Asp代码改.Net代码如何改??
<%
cmd1= "C:\WINDOWS\System32\cmd.exe /c "&ml1& " "
cmd2= "C:\WINDOWS\System32\cmd.exe /c "&ml2& " "
cmd3= "C:\WINDOWS\System32\cmd.exe /c "&ml3& " "
Set WShShell = Server.CreateObject( "MQShow.Shell ")
RetCode = WShShell.Run(cmd1, 1, True)
RetCode = WShShell.Run(cmd2, 1, True)
RetCode = WShShell.Run(cmd3, 1, True)
%>
------解决方案--------------------这段改成asp.net根本没法用,本来是客户端执行的程序,放到服务器端执行,客户端还是什么也没有,服务器倒是运行不少程序,很快就瘫痪了。