WebBrowser的Cookie操作

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();
posted @   94cool  阅读(338)  评论(2编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示