C# Cookie(修改/替换问题)

发布于 2024-12-01 07:21:06 字数 555 浏览 1 评论 0原文

我无法从服务器端修改存储在 cookie 中的 SessionKey 的最后一个值。下一个请求中的 SessionKey 仍然具有旧值。我的服务器端代码有什么问题?

var varHttpListenerContextResponseCookie_SessionKey =
    refHttpListenerContext.Response.Cookies[Constants.Cookies.LongNames.SessionKey];

if (varHttpListenerContextResponseCookie_SessionKey != null)
{
    varHttpListenerContextResponseCookie_SessionKey.Value = refSessionKey;
}
else
{
    refHttpListenerContext.Response.AppendCookie(
       new System.Net.Cookie(Constants.Cookies.LongNames.SessionKey, refSessionKey));
}

请帮我!:)

I cannot modify last value of SessionKey which stored in cookies from server side. SessionKey in next request is still has old value. What wrong in my server's side code?

var varHttpListenerContextResponseCookie_SessionKey =
    refHttpListenerContext.Response.Cookies[Constants.Cookies.LongNames.SessionKey];

if (varHttpListenerContextResponseCookie_SessionKey != null)
{
    varHttpListenerContextResponseCookie_SessionKey.Value = refSessionKey;
}
else
{
    refHttpListenerContext.Response.AppendCookie(
       new System.Net.Cookie(Constants.Cookies.LongNames.SessionKey, refSessionKey));
}

Please help me!:)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

影子的影子 2024-12-08 07:21:06

如果您想要更新值

// get existing cookie or create new
var cookie = Request.Cookies[Constants.Cookies.LongNames.SessionKey] ?? new HttpCookie(Constants.Cookies.LongNames.SessionKey);
// set cookie value
cookie.Value = refSessionKey;
// add cookie to http repsonse
Response.Cookies.Add(cookie);

MSDN - ASP.NET 中的 Cookie 基础知识

You must remember to add your modified cookie to Response if you want to update value

// get existing cookie or create new
var cookie = Request.Cookies[Constants.Cookies.LongNames.SessionKey] ?? new HttpCookie(Constants.Cookies.LongNames.SessionKey);
// set cookie value
cookie.Value = refSessionKey;
// add cookie to http repsonse
Response.Cookies.Add(cookie);

MSDN - Basics of Cookies in ASP.NET

盛夏已如深秋| 2024-12-08 07:21:06

据我了解,您想修改您的会话密钥。如果正确,那么您可以使用 SessionManager,它可以让您创建新的会话密钥。如果这不是您想要的,请提供有关您的问题的更多详细信息。

谢谢,
Shashi

如果您的问题得到解答,请将其标记为“已解答”。

From my understanding you want to modify your session Key. If it is right then you can make use of SessionManager, which will let you create a new session key. If this is not what you wanted please give more details about your question.

Thanks,
Shashi

If your question is answered kindly mark it as Answered.

2024-12-08 07:21:06

另外,在修改/添加 cookie 时,不要忘记创建/增加过期时间,因为过期的 cookie 可能无法检索

cookieForPage.Expires = DateTime.Today.AddYears(100);

Also when modifying/adding a cookie, don't forget to create/increase the expiration, as expired cookies may not be retrievable

cookieForPage.Expires = DateTime.Today.AddYears(100);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文