Win form exe call from Web application

Jun 13 2018 8:20 AM
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(); 
 
 
 

Answers (1)