mshtml.IHTMLInputElement userId = (mshtml.IHTMLInputElement)((mshtml.IHTMLDocument2)this.axWebBrowser1.Document).all.item("userid",0);
userId.value = this.textBox1.Text;mshtml.IHTMLInputElement pwd = (mshtml.IHTMLInputElement)((mshtml.IHTMLDocument2)this.axWebBrowser1.Document).all.item("psw",0);
pwd.value = this.textBox2.Text;mshtml.HTMLFormElement form111 = (mshtml.HTMLFormElement)((mshtml.IHTMLDocument2)this.axWebBrowser1.Document).all.item("form_login",0);
form111.submit();通过以上的代码会提交到action="http://a.com/login.jsp",关键是提交后,如何知道login.jsp响应后了,应该用什么事件呢,谢谢。