如何在ie或.net浏览器控件中阻止iframe
本文关键字:控件 iframe 浏览器 net ie | 更新日期: 2023-09-27 18:18:13
我需要一些帮助来阻止internet explorer或。net web浏览器控件中的iframe。我试过安全设置,但不管用。XP和IE8,使用。net Framework 4.0
在WebBrowser
的DocumentCompleted
事件中,只需删除所有<iframe>
元素:
foreach(HtmlElement x in ((WebBrowser) sender).Document.GetElementsByTagName("iframe")) {
x.OuterHtml = String.Empty;
}