網上收集的WebBrowser的Cookie操作

來源:互聯網
上載者:User
1、WebBrowser設定Cookie 1public partial class WebBrowserControl : Form
 2    {
 3        private String url;
 4
 5        [DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)]
 6        public static extern bool InternetSetCookie(string lpszUrlName, string lbszCookieName, string lpszCookieData);
 7
 8        public WebBrowserControl(String path)
 9        {
10            this.url = path;
11            InitializeComponent();
12
13            // set cookie
14            InternetSetCookie(url, "JSESSIONID", Globals.ThisDocument.sessionID);
15
16            // navigate
17            webBrowser.Navigate(url);
18        }
19        
20}

 2、將WebBrowser的cookie資訊傳給HttpWebRequest.

先建一個"CookieContainer" 把WebBrowser中的Cookie儲存在裡面

//在WebBrowser中登入 cookie儲存在 WebBrowser.Document.Cookie中       1          CookieContainer myCookieContainer = new CookieContainer();
 2
 3
 4            //String 的Cookie 要轉成 Cookie型的 並放入CookieContainer中
 5            string cookieStr = webBrowser1.Document.Cookie;
 6            string[] cookstr = cookieStr.Split(';');
 7            foreach (string str in cookstr)
 8            {
 9                string[] cookieNameValue = str.Split('=');
10                Cookie ck = new Cookie(cookieNameValue[0].Trim().ToString(), cookieNameValue[1].Trim().ToString());
11                ck.Domain = "www.abc.com";//必須寫對
12                myCookieContainer.Add(ck);
13            }
14
15            HttpWebRequest hreq = (HttpWebRequest)HttpWebRequest.Create("http://www.abc.com/search.asp");
16            hreq.Method = "POST";
17            hreq.ContentType = "application/x-www-form-urlencoded";
18         
19            //自己建立的CookieContainer
20            hreq.CookieContainer = myCookieContainer;
21         
22            string postdata = "id=2005&action=search&name=";
23            byte[] byte1 = Encoding.ASCII.GetBytes(postdata);
24            hreq.ContentLength = byte1.Length;
25          
26            Stream poststream = hreq.GetRequestStream();
27            poststream.Write(byte1, 0, byte1.Length);
28            poststream.Close();
29      
30            HttpWebResponse hres = (HttpWebResponse)hreq.GetResponse();

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.