To open a new browser window we can use the Process Class and a Start Method.The Process class contains a static Start method. Because we can call Start without having an instance of a Process class. By using Process Class we can also open an URL path, a file path, or a FTP address programmatically from ASP.NET application.
These are the list of options we can use to open the new window using Process class.
//-- used to open a blank web browser window
string targetSite = "about:blank";
//-- Open an url in a new web browser window
string targetSite = "http://www.yahoo.com";
//-- Open the ftp site in a new window
string targetSite = "ftp://ftp.mysite.com";
//-- Open the test.html file in a new web browser window
string targetSite = "D:\\test.html";