Posted on: 4/3/2015 8:41:42 AM | Views : 602

Hi,
In process.Start(), page direction,
ProcessStartInfo startInfo1 = new ProcessStartInfo();  startInfo1.FileName ="http://localhost:53396/Default2.aspx"; startInfo1.RedirectStandardInput =true; startInfo1.UseShellExecute = false; Process.Start(startInfo1);

Error is coming..
An exception of type 'System.ComponentModel.Win32Exception' occurred in System.dll but was not handled in user code
Additional information: The system cannot find the file specified

How to solve this to redirect to url page.

Go to the complete details ...