c# 中webBrowser 如何用代码模拟点击按钮
页面上的一段代码 如何模拟点击 "进入" 这个按钮
<div class="login-button">
<input type="button" title="进 入" value="进 入" onclick="location.href='../../main.jsp'" class="loginbut" />
<input type="button" title="退 出" value="退 出" onclick="location.href='logout.jsp'" class="logoutbut" />
</div>
------解决方案--------------------没听明白。webBrowser有函数对页面Document进行控制。
------解决方案--------------------var btns = webBrowser1.Document.GetElementsByTagName("input ");
foreach (HtmlElement btn in btns )
{
if (btn.GetAttribute("class") == "loginbut")
{
btn.InvokeMember("click");
}
}
*****************************************************************************
http://feiyun0112.cnblogs.com/