Hi my asp.net web application having one button which has the following code in its click event to open an .exe....
System.Diagnost ics.Process pro = new System.Diagnost ics.Process();
pro.StartInfo.W orkingDirectory = "./";
pro.StartInfo.F ileName = "windraw1.1.exe ";
pro.Start();
its is working fine if it is file system project. But in http type of project it doesnt work. also there wasnt any exceptions too. Also i have changed my virtual directory permissions to "scripts and Executables". but still it doesnt... plz let me know the solution for this...
System.Diagnost ics.Process pro = new System.Diagnost ics.Process();
pro.StartInfo.W orkingDirectory = "./";
pro.StartInfo.F ileName = "windraw1.1.exe ";
pro.Start();
its is working fine if it is file system project. But in http type of project it doesnt work. also there wasnt any exceptions too. Also i have changed my virtual directory permissions to "scripts and Executables". but still it doesnt... plz let me know the solution for this...
Comment