foreach (HtmlElement btn in webBrowser1.Document.GetElementsByTagName("input"))
{
if (btn.GetAttribute("ClassName") == "lfSubmit")
{
btn.InvokeMember("click");
}
}
Original issue reported on code.google.com by bloger...@gmail.com on 3 Sep 2014 at 7:32