我想编写一个dll,在网页上被调用,以运行本地程序
请问:
我想用.net编写一个类,——
Class myclass
Public Sub exec(ByVal path As String)
'这里运行path中的exe
End Public
End Class
然后想把这个类放在网页上,以供调用,请问怎么做?
比如在网页中,点击“记事本”,就会运行c:\windows\system32\notepad.exe
请问在网页中如何把c:\windows\system32\notepad.exe做为参数传给dll中的exec过程?谢谢。
注:还有,在vb.net中,如何运行另一个exe程序?谢谢!
[解决办法]
倒分