asp要让服务器执行一个exe文件,应该怎么办?谢谢! (100分)

  • 主题发起人 主题发起人 BlackHawk
  • 开始时间 开始时间
B

BlackHawk

Unregistered / Unconfirmed
GUEST, unregistred user!
delphi调用execute函数可以执行一个exe文件
asp要让服务器执行一个exe文件,应该怎么办?
 
大概要自己写个object
 
ASP可以调用某个对象的Exec可以实现,具体忘了哪个Object! UP!
 
<%
Set my_wshell = Server.CreateObject("WScript.Shell")
vntReturnValue = my_wshell.Run("my_exe_file.exe", 1, True)
Set my_wshell = Nothing
%>
 
This is a very bad idea (let a ASP run server-side exe file).
if this exe fils causes any problem maybe casue system crash.
 
这不就是病毒吗?黑客来拉。。。。
 
呵,告诉你,权限不够。^_^
除非服务器是98
 
web server /soap
 
黑客来拉。。。。?
 
设置浏览用户的权限应该可以执行,但在服务器端执行有何意义。
 
是啊…
又不能在客戶端執行……
 
后退
顶部