how to run an exe in asp.net. Very Urgent!!!
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
How to run an exe file in asp.net at run time. Reply immediately. Its very urgent. SR Ranjini
-
How to run an exe file in asp.net at run time. Reply immediately. Its very urgent. SR Ranjini
-
How to run an exe file in asp.net at run time. Reply immediately. Its very urgent. SR Ranjini
It quite possible to call exe from asp.net application. Use following code, using System.Diagnostics; Process p=null; try { p= new Process(); //p.StartInfo.FileName = "Exe path on server"; p.StartInfo.FileName = "c:\\HellowWorld.exe"; p.Start(); p.WaitForExit(); } catch (Exception ex) { Response.Write(ex); } There are other options with Process class which can be used to pass argument to exe etc. Happy Programming Manoj Tillu