使用WebClient自动填写并提交ASP.NET页面表单__教程 |
|
日期:2007-5-9 18:54:26 人气:54 [大 中 小] |
|
|
|
string uriString = "http://www.xxx.com/Login.aspx"; // 要提交的字符串数据。格式形如:user=uesr1&password=123 string postString = "userName=1&password=1" + "&loginButton=" + submitButton + "&__VIEWSTATE=" + viewState + "&__EVENTVALIDATION=" + eventValidation; // 初始化WebClient WebClient webClient = new WebClient(); webClient.Headers.Add("Content-Type", "application/x-www-form-urlencoded"); // 将字符串转换成字节数组 byte[] postData = Encoding.ASCII.GetBytes(postString); // 上传数据,返回页面的字节数组 byte[] responseData = webClient.UploadData(uriString, "POST", postData); // 将返回的将字节数组转换成字符串(HTML); // ASP.NET 返回的页面一般是Unicode,如果是简体中文应使用 // Encoding.GetEncoding("GB2312").GetString(responseData) string srcString = Encoding.UTF8.GetString(responseData); } catch (WebException we) { string msg = we.Message; } 几点说明: 1) srcStrinig 是提交表单后所返回页面的HTML,可以使用正则表达式等来分析之,以获得你所需要的数据。 2) “__VIEWSTATE”和“__EVENTVALIDATION”的值不是不是一成不变的。 3) 查看网页POST的数据还可以通过一些工具来查看,比如: 网页数据分析工具HttpWatch,网络嗅探器等。 4) 如果提交的表单有验证码,则不在本文讨论的范围内。 |
|
出处:本站原创 作者:佚名 |
|
|