程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 將WebBrowser的cookie信息傳給HttpWebRequest

將WebBrowser的cookie信息傳給HttpWebRequest

編輯:C#入門知識

先建一個"CookieContainer" 把WebBrowser中的Cookie保存在裡面
        
    //在WebBrowser中登錄 cookie保存在 WebBrowser.Document.Cookie中
            
             CookieContainer myCookieContainer = new CookieContainer();


             //String 的Cookie 要轉成 Cookie型的 並放入CookieContainer中
             string cookieStr = webBrowser1.Document.Cookie;
             string[] cookstr = cookieStr.Split(;);
             foreach (string str in cookstr)
             {
                 string[] cookieNameValue = str.Split(=);
                 Cookie ck = new Cookie(cookieNameValue[0].Trim().ToString(), cookieNameValue[1].Trim().ToString());
                 ck.Domain = "www.hao123.com";//必須寫對
                 myCookieContainer.Add(ck);
             }

 
             HttpWebRequest hreq = (HttpWebRequest)HttpWebRequest.Create("http://www.hao123.com/search.asp");
             hreq.Method = "POST";
             hreq.ContentType = "application/x-www-form-urlencoded";
           
             //自己創建的CookieContainer
             hreq.CookieContainer = myCookieContainer;
           
             string postdata = "id=2005&action=search&name=";
             byte[] byte1 = Encoding.ASCII.GetBytes(postdata);
             hreq.ContentLength = byte1.Length;
            
             Stream poststream = hreq.GetRequestStream();
             poststream.Write(byte1, 0, byte1.Length);
             poststream.Close();
        
             HttpWebResponse hres = (HttpWebResponse)hreq.GetResponse();

    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved