风清月

.net core cookie设置domain,过期时间等

电脑版发表于:2020/3/20 0:00

.net core cookie设置domain,过期时间很简单使用CookieOptions对象即可

CookieOptions cookieOptions = new CookieOptions();
cookieOptions.Domain = ".tnblog.net"; //设置domain让cookie共享
cookieOptions.Expires = DateTimeOffset.Now.AddDays(3);//设置过期时间
HttpContext.Response.Cookies.Append("token", tnToken.TokenStr, cookieOptions);

在删除的时候也要注意设置domain,不然

关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢