urgent doubt to run calc.exe from asp.net page
dear all,
I use this code in windows application it is successfully working,but not working in asp.net page
give a solution to execute calc.exe from asp.net page at runtime
Process p = new Process();
p.StartInfo.FileName="c:\\windows\\system32\\calc. exe";
p.StartInfo.CreateNoWindow=false;
p.StartInfo.UseShellExecute=false;
p.EnableRaisingEvents=true;
p.Start();
|