Search code examples
c#regexurlwebbrowser-controlnavigateurl

How to open a URL in new window using WebBrowser control in c# Windows Forms application and read its header information (via regex etc)


As said, I would like to open a URL in a new window (not the default IE browser instance of WebBrowser control) and read the Header information in order to retrieve a token. Currently, I am using the below code that opens in a new IE instance.

webBrowser1.Navigate(myLink, true);

If I use the below code,

webBrowser1.Navigate(new Uri(myLink));

it opens in the current window, I need it to open in a new WINDOW.

Any help would be greatly appreciated.


Solution

  • Make a new form with just the web browser and call it from your current form.