asp.Net各種クッキーコードと解析例
Cookieの作成
// 1:
Response.Cookies["username"].value="mike";
Response.Cookies["username"].Expires=DateTime.MaxValue;
// 2:
HttpCookie acookie = new HttpCookie("last");
acookie.Value="a";
acookie..Expires=DateTime.MaxValue;
Response.Cookies.Add(acookie);
// 1:
Response.Cookies["userinfo1"]["name"].value="mike";
Response.Cookies["userinfo1"]["last"].value="a";
Response.Cookies["userinfo1"].Expires=DateTime.MaxValue;
// 2:
HttpCookie cookie = new HttpCookie("userinfo1");
cookie.Values["name"]="mike";
cookie.Values["last"]="a";
cookie.Expires=DateTime.MaxValue;
//cookie.Expires = System.DateTime.Now.AddDays(1);// 1
Response.Cookies.Add(cookie);
Cookie Internet Explorerを読み込むサイトのCookieをファイル名@に保存する.txtのファイルには、アカウント名が含まれています.注意:Cookieの値を取得する前に、Cookieが確実に存在することを確認してください.それ以外の場合、例外が発生します.
If (Request.Cookies["userName"]!=null)
{
string str = Request.Cookies("userName").Value;
}
// Cookie
If ( Request.Cookies["userInfo1"]!=null )
{
string name=Request.Cookies["userInfo1"]["name"];
string last=Request.Cookies["userInfo1"]["last"];
}
// Cookie
for(int i = 0 ;i{
HttpCookie cookies = Request.Cookies;
Response.Write("name="+cookies.Mame+"
");
if (cookies.HasKeys )//
{
System.Collections.Specialized.NameValueCollection NameColl
= aCookie.Values ;
for(int j=0;j {
Response.Write(" ="+ NameColl.AllKey[j] +"
");
Response.Write(" ="+ NameColl[j] +"
");
}
}
else
{
Response.Write("value="+cookies.Value+"
");
}
}
このコードを実行すると、「ASP.NET_SessionId」というCookie,ASPが表示されます.NETはこのCookieでセッションの一意の識別子を保存します.
Cookieの変更方法は作成方法と同じです
Cookieを削除して有効期間を過去の日付に設定します.ブラウザがCookieの有効期間をチェックすると、この期限切れのCookieが削除されます.
HttpCookie cookie = new HttpCookie("userinfo1");
cookie.Expires=DateTime.Now.AddDays(-30);
Response.Cookies.Add(cookie);
cookie
Response.Cookies["Info"]["user"] = "2";
Response.Cookies["Info"].Expires = DateTime.Now.AddDays(1); // cookie
HttpCookie acookie=Request.Cookies["Info"];
acookie.Values.Remove("userid");
acookie.Expires = DateTime.Now.AddDays(1);
Response.Cookies.Add(acookie); // cookie,
int limit=Request.Cookies.Count - 1;
for(int i=0;i {
acookie = Request.Cookies(i)
acookie.Expires = DateTime.Now.AddDays(-1)
Response.Cookies.Add(acookie)
}
プライマリ・ステーションおよびセカンダリ・ドメイン名・ステーションがあり、クッキーが共有される場合は、次の設定を追加します.
cookie.Domain = ". ";// .keleyi.com
cookie.Path = "/";
Cookie.Expires AddDays(-1)