alan_1420
2006-11-06 09:06:01 UTC
請教各位前輩,VB.netasp.net的環境,
在已知本機檔案路徑的情況下,
該如何開啟並執行該路徑指定的檔案?
簡單的說,我希望我的 asp.net 程式可以辦到【開始/執行】的功能。
舉例而言:
dim str as string = "C:\aaa.htm"
'然後要怎麼寫才能夠本機執行這個檔案?
shell(str) '沒有用……
str as string = "J:\dic\kkk.exe" '指定路徑的檔案其檔案格式不一定, *.* 都有可能。
Dim newobj As Object
Dim opfile As Object
newobj = Server.CreateObject("scripting.filesystemobject")
opfile = newobj.openfile(str, 2, True) '這個方法也沒有用。
opfile.close()
懇請各位前輩指點迷津,謝謝。
在已知本機檔案路徑的情況下,
該如何開啟並執行該路徑指定的檔案?
簡單的說,我希望我的 asp.net 程式可以辦到【開始/執行】的功能。
舉例而言:
dim str as string = "C:\aaa.htm"
'然後要怎麼寫才能夠本機執行這個檔案?
shell(str) '沒有用……
str as string = "J:\dic\kkk.exe" '指定路徑的檔案其檔案格式不一定, *.* 都有可能。
Dim newobj As Object
Dim opfile As Object
newobj = Server.CreateObject("scripting.filesystemobject")
opfile = newobj.openfile(str, 2, True) '這個方法也沒有用。
opfile.close()
懇請各位前輩指點迷津,謝謝。