如何在c中使用我的浏览器cookie#

如何在c中使用我的浏览器cookie#

问题描述:

我有c#程序,我想请求一些网站并使用我系统中的cookies文件来请求网站白出登录页面?如何在c中使用我的浏览器cookie#

A cookie is a small bit of text that accompanies requests and pages as they go between the Web server and browser. The cookie contains information the Web application can read whenever the user visits the site. 

按照此实施例...

Response.Cookies [ “username” 的]值= “约翰”。 Response.Cookies [“userName”]。Expires = DateTime.Now.AddDays(1);

HttpCookie aCookie = new HttpCookie(“lastVisit”); aCookie.Value = DateTime.Now.ToString(); aCookie.Expires = DateTime.Now.AddDays(1); Response.Cookies.Add(aCookie);