請問要如何在web上執行exe檔 |
答題得分者是:zong
|
synnes
一般會員 發表:14 回覆:12 積分:5 註冊:2002-12-10 發送簡訊給我 |
|
zong
初階會員 發表:11 回覆:51 積分:42 註冊:2002-08-18 發送簡訊給我 |
若是用asp 可用
http://technology.maduka.idv.tw/com/files/aspexec.zip
1.使用ASPEXEC之前,請先註冊ASPEXEC.DLL這一個物件 其註冊語法如下: Regsvr32 ASPEXEC.DLL 2.語法說明 Set Executor = Server.CreateObject("ASPExec.Execute") '這是建立物件名稱的語法 Application '這是執行的應用程式的檔名稱與路徑 Executor.Application = "notepad.exe" Parameters '這是執行的應用程式的參數 Executor.Parameters = "c:\autoexec.bat" TimeOut '這是執行的應用程式的等待時間(ms) Executor.TimeOut = "6000" ShowWindow '這是執行的應用程式時是否要顯示視窗 Executor.ShowWindow = Ture ExecuteDosApp 'Executes the specified app as a DOS app and returns stdio as string Executor.ExecuteDosApp ExecuteWinAppAndWait 'Execute the specified app as a Windows app and wait for the specified timeout if exec is successful ExecuteWinApp 'Execute the specified app as a Windows app and return result code immediately 3.範例 Set Executor = Server.CreateObject("ASPExec.Execute") Executor.Application = "notepad.exe" Executor.Parameters = "c:\autoexec.bat" Executor.ShowWindow = True Response.Write "Attempting to execute " & Executor.Application & " " strResult = Executor.ExecuteWinApp Response.Write "The result of this call was: " & strResultps.轉截from technology.maduka.idv.tw //這裡好像不是asp 討論區 ..哈..看看就好! |
synnes
一般會員 發表:14 回覆:12 積分:5 註冊:2002-12-10 發送簡訊給我 |
|
zong
初階會員 發表:11 回覆:51 積分:42 註冊:2002-08-18 發送簡訊給我 |
Set Executor = Server.CreateObject("ASPExec.Execute") Executor.Application = "ping" Executor.Parameters = " 168.95.1.1" Response.Write Executor.Application & "執行結果 " & " " strResult = Executor.ExecuteDosApp Response.Write "The result of this call was: " & strResult上面那段code 前後加上 <% 及 %> 存成 .asp檔 try try 看吧! |
synnes
一般會員 發表:14 回覆:12 積分:5 註冊:2002-12-10 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |