if you want to submit the form you are checking
// get the document mshtml.IHTMLDocument2 doc = ((mshtml.HTMLDocumentClass)webBrowser1.Document); // set a variable ((mshtml.IHTMLElement)doc.all.item("q")).setAttribute("value", "my input..."); // click a button ((mshtml.HTMLInputElement)doc.all.item("btnI")).click();
The mshtml
namespace is located in Microsoft.mshtml
Assembly.
Just add the link Microsoft.mshtml.
hope this helps
source share