溫馨提示×

溫馨提示×

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

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

ASP.NET中Session和Cookie如何使用

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

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

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

由于種種原因,我們有時需要從互聯(lián)網(wǎng)上抓取一些資料,有些頁面可以直接打開,而有些頁面必登錄之后才能打開。本文介紹的是使用 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  ///////////////////////////////////////////////////  //設(shè)置打開頁面的參數(shù)  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";   //將文本轉(zhuǎn)換成URL編碼字符串  viewState=System.Web.HttpUtility.UrlEncode(viewState);  eventValidation=System.Web.HttpUtility.UrlEncode(eventValidation);  submitButton=System.Web.HttpUtility.UrlEncode(submitButton);   //要提交的字符串?dāng)?shù)據(jù)。格式形如:user=uesr1&password=123 stringformatString=  "userName={0}&password={1}&loginButton={2}&__VIEWSTATE={3}&__EVENTVALIDATION={4}";  stringstringpostString=  string.Format(formatString,userName,password,submitButton,viewState,eventValidation);   //將提交的字符串?dāng)?shù)據(jù)轉(zhuǎn)換成字節(jié)數(shù)組  byte[]postData=Encoding.ASCII.GetBytes(postString);   //設(shè)置提交的相關(guān)參數(shù)  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;   //提交請求數(shù)據(jù)  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頁面  ///////////////////////////////////////////////////  //設(shè)置打開頁面的參數(shù)  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 數(shù)據(jù)也一同 POST 過去。

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

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI