在 Web 浏览器控件中阻止 iframe

本文关键字:iframe 控件 Web 浏览器 | 更新日期: 2023-09-27 18:30:45

我在 Web 浏览器控件中阻止 iframe 时遇到问题。目前我正在使用以下代码:

foreach (HtmlElement x in ((WebBrowser)sender).Document.GetElementsByTagName("iframe"))
            {
                MessageBox.Show("iframe!"); //DEBUG
                x.OuterHtml = @"<iframe src=""about:blank"" frameborder=""0"" style=""display:none;""></iframe>";
//              x.OuterHtml = String.Empty; //gives the same result
            }

它可以工作,但是当导航到 www.popuptest.com 时,应用程序会因为这段代码而完全冻结。它显示 2 个"iframe!"消息框,并在关闭第二个消息框后冻结。我在网页的源代码中找到了 2 个 iframe(在该网站上显示的广告中)。这是导致它冻结的代码:

(a=document.createElement("IFRAME"),a.frameBorder=0,a.style.height=0,a.style.width=0,a.style.position="absolute",t=a,document.body&&(document.body.appendChild(a),a=t))&&(a=a.contentWindow)&&(r="1",a.document.open(),a.document.write("<!doctype html><html><head></head><body></body></html>"),a.document.close(),k(a.document))

我想这是因为框架是以不同的方式创建的?我已经在win7/IE10和winXP/IE6上测试过它,结果是一样的。但是,在winXP上,它会崩溃并打开调试器而不是冻结,这就是我获得错误代码的原因。

有没有更好/更安全的方法来删除 iframe 的内容?

在 Web 浏览器控件中阻止 iframe

我会尝试使用下载控制(DLCTL_NO_FRAMEDOWNLOAD)禁用帧。这是如何做到的,尽管我自己还没有尝试过。让我们知道这是否适用于阻止帧。