L
Leo
I am trying to invoke an EXE in ASP.NET.
string path = "notepad.exe";
ProcessStartInfo startInfo = new ProcessStartInfo(path);
startInfo.WindowStyle = ProcessWindowStyle.Normal;
Process.Start(startInfo);
I could see that the process for notepad in Task Manager. But the
notepad is not directly show up. I don't want notepad to run behind
the scene: I would like to "see" it. Any idea?
Thanks in advance.
Leo
string path = "notepad.exe";
ProcessStartInfo startInfo = new ProcessStartInfo(path);
startInfo.WindowStyle = ProcessWindowStyle.Normal;
Process.Start(startInfo);
I could see that the process for notepad in Task Manager. But the
notepad is not directly show up. I don't want notepad to run behind
the scene: I would like to "see" it. Any idea?
Thanks in advance.
Leo