ASP.NET表单的Session和Cookie

使用HttpWebRequest提交ASP.NET表单并保持Session和Cookie

10年积累的成都网站建设、成都网站设计经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站设计后付款的网站建设流程,更有沙坡头免费网站建设让你可以放心的选择与我们合作。

由于种种原因,我们有时需要从互联网上抓取一些资料,有些页面可以直接打开,而有些页面必登录之后才能打开。本文介绍的是使用 HttpWebRequest 和 HttpWebResponse 自动填写提交 ASP.NET表单并保持Session和Cookie 的一个完整的例子。本文所有源代码:AutoPostWithCookies.rar

这里涉及到3个页面:MyLogin.aspx,LoginOK.htm,Default.aspx:
1)MyLogin.aspx 页面
2)LoginOK.htm 页面
3)Default.aspx 页面

提交ASP.NET表单(即完成自动登录)的代码如下:

 
 
 
  1. try  
  2. {  
  3. CookieContainercookieContainer=newCookieContainer();  
  4.  
  5. ///////////////////////////////////////////////////  
  6. //1.打开MyLogin.aspx页面,获得VeiwState&EventValidation  
  7. ///////////////////////////////////////////////////  
  8. //设置打开页面的参数  
  9. stringURI="http://localhost:1165/WebTest/MyLogin.aspx";  
  10. HttpWebRequestrequest=WebRequest.Create(URI)asHttpWebRequest;  
  11. request.Method="GET";  
  12. request.KeepAlive=false;  
  13.  
  14. //接收返回的页面  
  15. HttpWebResponseresponse=request.GetResponse()asHttpWebResponse;  
  16. System.IO.StreamresponseStream=response.GetResponseStream();  
  17. System.IO.StreamReaderreader=newSystem.IO.StreamReader(responseStream,Encoding.UTF8);  
  18. stringsrcString=reader.ReadToEnd();  
  19.  
  20. //获取页面的VeiwState  
  21. stringviewStateFlag="id=\"__VIEWSTATE\"value=\"";  
  22. inti=srcString.IndexOf(viewStateFlag)+viewStateFlag.Length;  
  23. intj=srcString.IndexOf("\"",i);  
  24. stringviewState=srcString.Substring(i,j-i);  
  25.  
  26. //获取页面的EventValidation  
  27. stringeventValidationFlag="id=\"__EVENTVALIDATION\"value=\"";  
  28. i=srcString.IndexOf(eventValidationFlag)+eventValidationFlag.Length;  
  29. j=srcString.IndexOf("\"",i);  
  30. stringeventValidation=srcString.Substring(i,j-i);  
  31.  
  32. ///////////////////////////////////////////////////  
  33. //2.自动填充并提交MyLogin.aspx页面  
  34. ///////////////////////////////////////////////////  
  35. //提交按钮的文本  
  36. stringsubmitButton="登录";  
  37.  
  38. //用户名和密码  
  39. stringuserName="1";  
  40. stringpassword="1";  
  41.  
  42. //将文本转换成URL编码字符串  
  43. viewState=System.Web.HttpUtility.UrlEncode(viewState);  
  44. eventValidation=System.Web.HttpUtility.UrlEncode(eventValidation);  
  45. submitButton=System.Web.HttpUtility.UrlEncode(submitButton);  
  46.  
  47. //要提交的字符串数据。格式形如:user=uesr1&password=123 
  48. stringformatString=  
  49. "userName={0}&password={1}&loginButton={2}&__VIEWSTATE={3}&__EVENTVALIDATION={4}";  
  50. stringstringpostString=  
  51. string.Format(formatString,userName,password,submitButton,viewState,eventValidation);  
  52.  
  53. //将提交的字符串数据转换成字节数组  
  54. byte[]postData=Encoding.ASCII.GetBytes(postString);  
  55.  
  56. //设置提交的相关参数  
  57. request=WebRequest.Create(URI)asHttpWebRequest;  
  58. request.Method="POST";  
  59. request.KeepAlive=false;  
  60. request.ContentType="application/x-www-form-urlencoded";  
  61. request.CookieContainer=cookieContainer;  
  62. request.ContentLength=postData.Length;  
  63.  
  64. //提交请求数据  
  65. System.IO.StreamoutputStream=request.GetRequestStream();  
  66. outputStream.Write(postData,0,postData.Length);  
  67. outputStream.Close();  
  68.  
  69. //接收返回的页面  
  70. response=request.GetResponse()asHttpWebResponse;  
  71. responseresponseStream=response.GetResponseStream();  
  72. reader=newSystem.IO.StreamReader(responseStream,Encoding.GetEncoding("GB2312"));  
  73. srcString=reader.ReadToEnd();  
  74.  
  75. ///////////////////////////////////////////////////  
  76. //3.打开Default.aspx页面  
  77. ///////////////////////////////////////////////////  
  78. //设置打开页面的参数  
  79. URI="http://localhost:1165/WebTest/Default.aspx";  
  80. request=WebRequest.Create(URI)asHttpWebRequest;  
  81. request.Method="GET";  
  82. request.KeepAlive=false;  
  83. request.CookieContainer=cookieContainer;  
  84.  
  85. //接收返回的页面  
  86. response=request.GetResponse()asHttpWebResponse;  
  87. responseresponseStream=response.GetResponseStream();  
  88. reader=newSystem.IO.StreamReader(responseStream,Encoding.UTF8);  
  89. srcString=reader.ReadToEnd();  
  90.  
  91. ///////////////////////////////////////////////////  
  92. //4.分析返回的页面  
  93. ///////////////////////////////////////////////////  
  94. //  
  95. }  
  96. catch(WebExceptionwe)  
  97. {  
  98. stringmsg=we.Message;  

说明:
1) 之所以能够保持 Session 和 Cookie 是因为使用了 Cookie 容器(CookieContainer),见红色的代码部分。
2) POST ASP.NET页面时,需要把 VeiwState 和 EventValidation 数据也一同 POST 过去。以上介绍ASP.NET表单并保持Session和Cookie

【编辑推荐】

  1. ASP.NET开发技巧之Theme功能浅析
  2. 详解ASP.NET动态编译
  3. Apache支持ASP.NET方法浅析
  4. 浅谈ASP.NET服务器标准控件
  5. ASP.NET中SQL Server数据库备份恢复浅析

分享题目:ASP.NET表单的Session和Cookie
标题链接:http://www.csdahua.cn/qtweb/news45/537745.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网