W
Wally
I know this is an asp.net question but I got no answers there.
How do you start a new visible process from a asp.net page?
I can use:
System.Diagnostics.Process.Start ("mspaint.exe");
from Main() in console application and it works fine.
When I put it in the Page_Load procedure of an aspx page, the process is
started, as viewed from TaskManager, but nothing is visible. I've tried all
sorts of StartInfo strings, still the same.
I've tried all sorts of applications, including a .bat file with only a
PAUSE statement, still wont open a command window.
What I really want to do is open the winzip command line utility to zip some
files up, but that seems irrelevant until I can gain control of this action.
Any ideas would be appreciated
How do you start a new visible process from a asp.net page?
I can use:
System.Diagnostics.Process.Start ("mspaint.exe");
from Main() in console application and it works fine.
When I put it in the Page_Load procedure of an aspx page, the process is
started, as viewed from TaskManager, but nothing is visible. I've tried all
sorts of StartInfo strings, still the same.
I've tried all sorts of applications, including a .bat file with only a
PAUSE statement, still wont open a command window.
What I really want to do is open the winzip command line utility to zip some
files up, but that seems irrelevant until I can gain control of this action.
Any ideas would be appreciated