ASP.NET Core MVC/Cookie
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
-[[ASP.NET Core 2.0 MVC で Cookie を利用する:https://qiit...
*Cookieの書き込み [#pc1827b7]
**ただ書き込む場合 [#i2ccb9fe]
this.HttpContext.Response.Cookies.Append("TestKey1", "Te...
this.HttpContext.Response.Cookies.Append("TestKey2", "Te...
**Cookiesの詳細オプション設定して書き込み [#c79056b8]
-このオプションを設定すると「samesite=lax」が追加される
--この属性があるとクロスドメインアクセスしたときに当該Coo...
var cOptions = new CookieOptions() {
HttpOnly = true,
Expires = new DateTimeOffset(DateTime.Now.AddDays(2))
};
this.HttpContext.Response.Cookies.Append(cKey,cValue,cOp...
*Cookieの読み込み [#y5ed6f8e]
-方法1
string cValue = this.HttpContext.Request.Cookies[cKey];
-方法2
string cookie = this.HttpContext.Request.Headers["Cookie...
**Cookieの削除 [#od255224]
this.HttpContext.Response.Cookies.Delete(cKey);
終了行:
-[[ASP.NET Core 2.0 MVC で Cookie を利用する:https://qiit...
*Cookieの書き込み [#pc1827b7]
**ただ書き込む場合 [#i2ccb9fe]
this.HttpContext.Response.Cookies.Append("TestKey1", "Te...
this.HttpContext.Response.Cookies.Append("TestKey2", "Te...
**Cookiesの詳細オプション設定して書き込み [#c79056b8]
-このオプションを設定すると「samesite=lax」が追加される
--この属性があるとクロスドメインアクセスしたときに当該Coo...
var cOptions = new CookieOptions() {
HttpOnly = true,
Expires = new DateTimeOffset(DateTime.Now.AddDays(2))
};
this.HttpContext.Response.Cookies.Append(cKey,cValue,cOp...
*Cookieの読み込み [#y5ed6f8e]
-方法1
string cValue = this.HttpContext.Request.Cookies[cKey];
-方法2
string cookie = this.HttpContext.Request.Headers["Cookie...
**Cookieの削除 [#od255224]
this.HttpContext.Response.Cookies.Delete(cKey);
ページ名: