Hi all,
Is possiable to execute the winform exe from web application?
I have tried the given methods but not working.
System.Diagnostics.Process.Start("Notepad.exe");
System.Diagnostics.ProcessStartInfo startInfo;
Process p = new Process();
startInfo = new System.Diagnostics.ProcessStartInfo(@"C:/Test/sample.exe");
p.StartInfo = startInfo;
p.Start();