How can i run any win.exe from asp.net page?
this codes me error: The system cannot find the file specified
System.Diagnostics.Process process1 = new System.Diagnostics.Process(); process1.StartInfo.WorkingDirectory = Request.MapPath(@"C:\"); process1.StartInfo.FileName = Request.MapPath("WindowsApplication1.exe"); process1.Start();