调用windows程序(*.ext)无效果
在ASP.NET网页中调用Windows应用程序无效,后台已经有进程,但是完全没有效果,没有效果,没有界面。
(并且尝试调用批处理,批处理中再调用ODBC-GET.EXE,批处理正常执行,EXE程序没有效果.)
Dim MyProcess As New System.Diagnostics.Process
MyProcess.StartInfo.CreateNoWindow = True
MyProcess.StartInfo.UseShellExecute = True
MyProcess.StartInfo.WorkingDirectory = "C:\Users\Administrator\Desktop"
MyProcess.StartInfo.FileName = "ODBC-Get.exe"
MyProcess.StartInfo.Arguments = "MyArgument"
MyProcess.Start()