简体   繁体   中英

click on a link event webbrowser c#?

I want to open a link in IE browser from the web browser control in my winform... the webbrowser control navigate to a page when the user click on a link it opens in the internet explorer browser.

Basically handle the WebBrowser.Navigating Event , cancel the navigation and open up the url in explorer like this:

private void WebBrowserNavigating(object sender, WebBrowserNavigatingEventArgs e)
{
  e.Cancel = true;
  Process.Start("iexplorer.exe", e.Url);
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM