webBrowser问题
继http://topic.csdn.net/u/20081124/12/a0414882-f793-4359-bc6c-20db2f94bee7.html这个帖子:
一个asp页面有一个textname和Submit用来查询
System.Windows.Forms.HtmlElement txtkeywords = this.webBrowser1.Document.All["textname"];
System.Windows.Forms.HtmlElement buttonchaxun = this.webBrowser1.Document.All["Submit"];
txtkeywords.SetAttribute("value", "test");
buttonchaxun.InvokeMember("click");
string strResult=........
通过以上方法给textname赋值点击Submit查询,如何得到buttonchaxun.InvokeMember("click"); 之后请求页面的html代码???