c#如何点击网页上这样的按钮呢??
没有ID也没有name。
------解决方案--------------------
他这个是asp.net里的
你这个可以通过class来查找这个元素
IHTMLDocument2 doc2 = (IHTMLDocument2)this.webBrowser1.ActiveXInstance;
foreach (IHTMLElement el in (IHTMLElementCollection)doc2.all.tags("input"))
{
if (el.className != null && el.className.ToLower().Contains("input-button"))
{
el.click();
}