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

來源:互聯網
上載者:User

由於種種原因,我們有時需要從互連網上抓取一些資料,有些頁面可以直接開啟,而有些頁面必登入之後才能開啟。本文介紹的是使用 HttpWebRequest 和 HttpWebResponse 自動填寫提交 ASP.NET 表單並保持 Session 和 Cookie 的一個完整的例子。本文所有原始碼:AutoPostWithCookies.rar

這裡涉及到3個頁面:MyLogin.aspx,LoginOK.htm,Default.aspx:
1)MyLogin.aspx 頁面

MyLogin.aspx 頁面是登入頁面,如果使用者名稱和密碼正確會產生 Session 和 Cookie(LoginSession、LoginCookie),然後轉向 LoginOK.htm 頁面。

2)LoginOK.htm 頁面

LoginOK.htm 頁面是一個跳轉頁面,幾秒鐘後會自動跳轉到 Default.aspx 頁面。

3)Default.aspx 頁面

Default.aspx 頁面是主介面,開啟主介面時會判斷 LoginSession 和 LoginCookie 的值是否正確,並把 Session 和 Cookie 的值顯示出來。

提交ASP.NET表單(即完成自動登入)的代碼如下:

    try
    {
        CookieContainer cookieContainer = new CookieContainer();

        ///////////////////////////////////////////////////
        // 1. 開啟 MyLogin.aspx 頁面,獲得 VeiwState & EventValidation
        ///////////////////////////////////////////////////                
        // 設定開啟頁面的參數
        string URI = "http://localhost:1165/WebTest/MyLogin.aspx";
        HttpWebRequest request = WebRequest.Create(URI) as HttpWebRequest;
        request.Method = "GET";
        request.KeepAlive = false;

        // 接收返回的頁面
        HttpWebResponse response = request.GetResponse() as HttpWebResponse;
        System.IO.Stream responseStream = response.GetResponseStream();
        System.IO.StreamReader reader = new System.IO.StreamReader(responseStream,Encoding.UTF8);
        string srcString = reader.ReadToEnd();

        // 擷取頁面的 VeiwState                
        string viewStateFlag = "id=\"__VIEWSTATE\" value=\"";
        int i = srcString.IndexOf(viewStateFlag) + viewStateFlag.Length;
        int j = srcString.IndexOf("\"", i);
        string viewState = srcString.Substring(i, j - i);

        // 擷取頁面的 EventValidation                
        string eventValidationFlag = "id=\"__EVENTVALIDATION\" value=\"";
        i = srcString.IndexOf(eventValidationFlag) + eventValidationFlag.Length;
        j = srcString.IndexOf("\"", i);
        string eventValidation = srcString.Substring(i, j - i);

        ///////////////////////////////////////////////////
        // 2. 自動填滿並提交 MyLogin.aspx 頁面
        ///////////////////////////////////////////////////
        // 提交按鈕的文本
        string submitButton = "登入";

        // 使用者名稱和密碼
        string userName = "1";
        string password = "1";

        // 將文本轉換成 URL 編碼字串
        viewState = System.Web.HttpUtility.UrlEncode(viewState);
        eventValidation = System.Web.HttpUtility.UrlEncode(eventValidation);
        submitButton = System.Web.HttpUtility.UrlEncode(submitButton);

        // 要提交的字串資料。格式形如:user=uesr1&password=123
        string formatString = 
                 "userName={0}&password={1}&loginButton={2}&__VIEWSTATE={3}&__EVENTVALIDATION={4}";
        string postString = 
                 string.Format(formatString, userName, password, submitButton, viewState, eventValidation);

        // 將提交的字串資料轉換成位元組數組
        byte[] postData = Encoding.ASCII.GetBytes(postString);

        // 設定提交的相關參數
        request = WebRequest.Create(URI) as HttpWebRequest;
        request.Method = "POST";
        request.KeepAlive = false;
        request.ContentType = "application/x-www-form-urlencoded";
        request.CookieContainer = cookieContainer;
        request.ContentLength = postData.Length;

        // 提交請求資料
        System.IO.Stream outputStream = request.GetRequestStream();
        outputStream.Write(postData, 0, postData.Length);
        outputStream.Close();

        // 接收返回的頁面
        response = request.GetResponse() as HttpWebResponse;
        responseStream = response.GetResponseStream();
        reader = new System.IO.StreamReader(responseStream,Encoding.GetEncoding("GB2312"));
        srcString = reader.ReadToEnd();

        ///////////////////////////////////////////////////
        // 3. 開啟 Default.aspx 頁面
        ///////////////////////////////////////////////////
        // 設定開啟頁面的參數
        URI = "http://localhost:1165/WebTest/Default.aspx";
        request = WebRequest.Create(URI) as HttpWebRequest;
        request.Method = "GET";
        request.KeepAlive = false;
        request.CookieContainer = cookieContainer;

        // 接收返回的頁面
        response = request.GetResponse() as HttpWebResponse;
        responseStream = response.GetResponseStream();
        reader = new System.IO.StreamReader(responseStream, Encoding.UTF8);
        srcString = reader.ReadToEnd();

        ///////////////////////////////////////////////////
        // 4. 分析返回的頁面
        ///////////////////////////////////////////////////
        //  
    }
    catch (WebException we)
    {
        string msg = we.Message;
    }  

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

本文所有原始碼:AutoPostWithCookies.rar

相關文章:使用WebClient自動填寫並提交ASP.NET頁面表單
             使用WebClient自動填寫並提交ASP.NET頁面表單的原始碼
             在C#中使用Regex自動匹配並擷取所需要的資料

本文地址:http://www.cnblogs.com/anjou/archive/2007/10/15/923770.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.