白名单webbrowser控件c#

时间:2015-02-09 23:34:01

标签: c# internet-explorer whitelist

在我的Windows窗体上的webBrowwer控件中,我只想加载2个URL,否则,如果它试图转到任何其他页面,我想要页面停止加载。的WinForms。

 private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e)
    {
        e.Cancel = !e.Url.Host.StartsWith("http://9.9.9.9/system.xml");
        e.Cancel = !e.Url.Host.StartsWith("http://9.9.9.9/top.xml");
    }

以上内容仍会加载不符合规定的网页....任何想法?

0 个答案:

没有答案