1
Answer

How to call an exe from web application

Pitchaiyan PST

Pitchaiyan PST

10y
591
1
Hi all here,
 
 
I have a doubt, that as How to call an exe from web application?.  (exe is used for some specific purpose, for example generates and returns  random numbers), So can we call and get returned values from exe?. if yes then could you please tell me the Procedure to do it.
 
Thanks
Pitchaiyan c 
Answers (1)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();