我正在协会的一个项目中工作。 NET。
用户名在用户记录中首次出现。 例如: 如果目前的用户第一次登入和访问某个网页,就会有一个人满为患的窗口,否则不会发生。
用户名应当储存在客户浏览器上,在用户关闭浏览器之前仍然有效。
My question is, what is the best approach of doing this?
Any limitations if I am using ASP.Net Cache to store the username? For example:
Cache["myCache"] = username;
and remove the item from the cache when page loads for the first time.
if (!Page.IsPostBack)
{
Cache.Remove("myCache");
}
这一点可以提出意见。 事先感谢你。