什么是会话 Cookie?
有人可以解释一下 .NET 中的会话 cookie 是什么以及如何将数据写入其中吗?
谢谢,
萨钦
Can someone please explain what a session cookie is in .NET and how I write data into one?
Thanks,
Sachin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
会话 cookie 允许在网站内识别用户,因此您所做的任何页面更改或项目或数据选择都会逐页记住。此功能最常见的示例是任何电子商务网站的购物车功能。
复制自 AllAboutCookies
Session cookies allow users to be recognized within a website so any page changes or item or data selection you do is remembered from page to page. The most common example of this functionality is the shopping cart feature of any e-commerce site.
copied from AllAboutCookies
会话 Cookie
ASP.Net 中的会话 Cookie
请参阅 此了解详细信息
Session Cookies
Session Cookies in ASP.Net
See this for details
例如;
您访问 http://www.blablabla.com/message.aspx 并看到
请登录
消息。您登录该网站。之后,您将 http://www.blablabla.com/message.aspx 重写为您的浏览器,自动重定向您的消息框。
Session Cookies
就会发生这种情况。For example;
You visit http://www.blablabla.com/message.aspx and you see
Please Login
message.You login the site. After that, you re-write http://www.blablabla.com/message.aspx in your browser, the automaticly redirecting your message box.
This is happening with
Session Cookies
.