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.
Make a new form with just the web browser and call it from your current form.