HTMLDocument thedocument = WebBrowser.document.all;
HTMLElement theelement = thedocument.getElementById(""); //这里找你要藏的东西的ID;
theelement.setAttribute("visible",false); //藏起来
HTMLDocument thedocument = WebBrowser.document.all;
HTMLElement theelement = thedocument.getElementById(""); //这里找你要藏的东西的ID;
theelement.setAttribute("visible",false); //藏起来 或HtmlElement htm = webBrowser1.Document.GetElementById("控件ID");
htm.OuterHtml = "";
HtmlElement htm = webBrowser1.Document.GetElementById("控件ID");
htm.OuterHtml = "";
隐藏CSS属性就可以了