亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET中Session和Cookie如何使用

發布時間:2021-07-16 11:18:39 來源:億速云 閱讀:116 作者:Leah 欄目:編程語言

ASP.NET中Session和Cookie如何使用,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

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

由于種種原因,我們有時需要從互聯網上抓取一些資料,有些頁面可以直接打開,而有些頁面必登錄之后才能打開。本文介紹的是使用 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表單(即完成自動登錄)的代碼如下:

try  {  CookieContainercookieContainer=newCookieContainer();   ///////////////////////////////////////////////////  //1.打開MyLogin.aspx頁面,獲得VeiwState&EventValidation  ///////////////////////////////////////////////////  //設置打開頁面的參數  stringURI="http://localhost:1165/WebTest/MyLogin.aspx";  HttpWebRequestrequest=WebRequest.Create(URI)asHttpWebRequest;  request.Method="GET";  request.KeepAlive=false;   //接收返回的頁面  HttpWebResponseresponse=request.GetResponse()asHttpWebResponse;  System.IO.StreamresponseStream=response.GetResponseStream();  System.IO.StreamReaderreader=newSystem.IO.StreamReader(responseStream,Encoding.UTF8);  stringsrcString=reader.ReadToEnd();   //獲取頁面的VeiwState  stringviewStateFlag="id=\"__VIEWSTATE\"value=\"";  inti=srcString.IndexOf(viewStateFlag)+viewStateFlag.Length;  intj=srcString.IndexOf("\"",i);  stringviewState=srcString.Substring(i,j-i);   //獲取頁面的EventValidation  stringeventValidationFlag="id=\"__EVENTVALIDATION\"value=\"";  i=srcString.IndexOf(eventValidationFlag)+eventValidationFlag.Length;  j=srcString.IndexOf("\"",i);  stringeventValidation=srcString.Substring(i,j-i);   ///////////////////////////////////////////////////  //2.自動填充并提交MyLogin.aspx頁面  ///////////////////////////////////////////////////  //提交按鈕的文本  stringsubmitButton="登錄";   //用戶名和密碼  stringuserName="1";  stringpassword="1";   //將文本轉換成URL編碼字符串  viewState=System.Web.HttpUtility.UrlEncode(viewState);  eventValidation=System.Web.HttpUtility.UrlEncode(eventValidation);  submitButton=System.Web.HttpUtility.UrlEncode(submitButton);   //要提交的字符串數據。格式形如:user=uesr1&password=123 stringformatString=  "userName={0}&password={1}&loginButton={2}&__VIEWSTATE={3}&__EVENTVALIDATION={4}";  stringstringpostString=  string.Format(formatString,userName,password,submitButton,viewState,eventValidation);   //將提交的字符串數據轉換成字節數組  byte[]postData=Encoding.ASCII.GetBytes(postString);   //設置提交的相關參數  request=WebRequest.Create(URI)asHttpWebRequest;  request.Method="POST";  request.KeepAlive=false;  request.ContentType="application/x-www-form-urlencoded";  request.CookieContainer=cookieContainer;  request.ContentLength=postData.Length;   //提交請求數據  System.IO.StreamoutputStream=request.GetRequestStream();  outputStream.Write(postData,0,postData.Length);  outputStream.Close();   //接收返回的頁面  response=request.GetResponse()asHttpWebResponse;  responseresponseStream=response.GetResponseStream();  reader=newSystem.IO.StreamReader(responseStream,Encoding.GetEncoding("GB2312"));  srcString=reader.ReadToEnd();   ///////////////////////////////////////////////////  //3.打開Default.aspx頁面  ///////////////////////////////////////////////////  //設置打開頁面的參數  URI="http://localhost:1165/WebTest/Default.aspx";  request=WebRequest.Create(URI)asHttpWebRequest;  request.Method="GET";  request.KeepAlive=false;  request.CookieContainer=cookieContainer;   //接收返回的頁面  response=request.GetResponse()asHttpWebResponse;  responseresponseStream=response.GetResponseStream();  reader=newSystem.IO.StreamReader(responseStream,Encoding.UTF8);  srcString=reader.ReadToEnd();   ///////////////////////////////////////////////////  //4.分析返回的頁面  ///////////////////////////////////////////////////  //  }  catch(WebExceptionwe)  {  stringmsg=we.Message;  }


說明:
1) 之所以能夠保持 Session 和 Cookie 是因為使用了 Cookie 容器(CookieContainer),見紅色的代碼部分。
2) POST ASP.NET頁面時,需要把 VeiwState 和 EventValidation 數據也一同 POST 過去。

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

将乐县| 高邮市| 伊金霍洛旗| 正安县| 黎平县| 乐亭县| 克拉玛依市| 哈密市| 射洪县| 沭阳县| 湘潭县| 宝清县| 万山特区| 兰西县| 察雅县| 嫩江县| 昭平县| 离岛区| 太保市| 常山县| 公安县| 临邑县| 桓台县| 湘阴县| 扶绥县| 金沙县| 武平县| 平湖市| 肇源县| 海晏县| 达州市| 商河县| 平罗县| 汉川市| 托克托县| 溧水县| 财经| 获嘉县| 股票| 遂川县| 新巴尔虎右旗|