gpt4 book ai didi

javascript - 在 ASP.NET 项目中使用缓存的最佳方法是什么?

转载 作者:行者123 更新时间:2023-11-30 08:13:01 25 4
gpt4 key购买 nike

我正在 ASP.NET 中的一个项目中工作。

我想在用户第一次登录时缓存用户名。例如:如果当前用户登录并第一次访问特定页面,将有一个弹出窗口显示,否则没有任何反应。

用户名应存储在客户端浏览器中,并在用户关闭浏览器之前一直有效。

我的问题是,这样做的最佳方法是什么?

如果我使用 ASP.Net 缓存来存储用户名,有什么限制吗?例如:

Cache["myCache"] = username;

并在第一次加载页面时从缓存中删除该项目。

if (!Page.IsPostBack)
{
Cache.Remove("myCache");
}

这是开放的任何意见。提前谢谢你。

最佳答案

使用 HttpCookie 并根据需要设置过期时间:

If you do not set the cookie's expiration, the cookie is created but it is not stored on the user's hard disk. Instead, the cookie is maintained as part of the user's session information. When the user closes the browser, the cookie is discarded.

ASP.NET Cookies Overview

//write
HttpCookie myCookie = new HttpCookie("UserSettings");
myCookie["Font"] = "Arial";
myCookie["Color"] = "Blue";
//myCookie.Expires = DateTime.Now.AddDays(1d);
Response.Cookies.Add(myCookie);

//read
if (Request.Cookies["UserSettings"] != null)
{
string userSettings;
if (Request.Cookies["UserSettings"]["Font"] != null)
{ userSettings = Request.Cookies["UserSettings"]["Font"]; }
}

How to: Write a Cookie

How to: Read a Cookie

关于javascript - 在 ASP.NET 项目中使用缓存的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7734919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com