Hi All,
I have developed one web application so ,on button click i want to execute one exe which is also developed in c#.
Its working fine on local machine but not on IIS7 server.
Below is code for execute .exe on button click().
string str = @"C:\Windows\NOTEPAD.exe";
Process process = new Process();
process.StartInfo.FileName = str;
process.Start();
Thanks and Regrds
Nikhil