Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
此代码阻止网站前: http: //google.com或 plus.google.com 但https://google.com不起作用
e.Cancel = e.Url.Host.Contains("google");
private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e) { e.Cancel = e.Url.ToString().Contains("google"); }