I basically have a web-browser control that is going through and automatically completing some forms, it\'s been a breeze so far, however I\'ve gotten to a form that does no
HtmlElementCollection elc = this.webBrowser1.Document.GetElementsByTagName("input"); foreach (HtmlElement el in elc) { if (el.GetAttribute("type").Equals("submit")) { el.InvokeMember("click"); } }