C# 什么是会话cookie?

C# 什么是会话cookie?,c#,session,cookies,C#,Session,Cookies,有人能解释一下.NET中的会话cookie是什么,以及我如何将数据写入会话cookie吗 谢谢 Sachin会话Cookie允许用户在网站中被识别,因此您所做的任何页面更改、项目或数据选择都会在页面之间被记住。此功能最常见的示例是任何电子商务站点的购物车功能 从会话cookie复制的内容允许用户在网站中被识别,因此您所做的任何页面更改、项目或数据选择都会在页面之间被记住。此功能最常见的示例是任何电子商务站点的购物车功能 从会话cookie复制 Webpages have no memor

有人能解释一下.NET中的会话cookie是什么,以及我如何将数据写入会话cookie吗

谢谢


Sachin会话Cookie允许用户在网站中被识别,因此您所做的任何页面更改、项目或数据选择都会在页面之间被记住。此功能最常见的示例是任何电子商务站点的购物车功能


从会话cookie复制的内容允许用户在网站中被识别,因此您所做的任何页面更改、项目或数据选择都会在页面之间被记住。此功能最常见的示例是任何电子商务站点的购物车功能


从会话cookie复制

    Webpages have no memories. A user going from page to page will be treated by the 
website as a completely new visitor. Session cookies enable the website you are visiting to 
keep track of your movement from page to page so you don't get asked for the same 
information you've already given to the site.
ASP.Net中的会话Cookies

    When a user connects to an ASP.NET application, a unique session ID will be affiliated 
with the user. If nothing is put in the session however, no cookie will be sent to the 
browser. This means that the user will get a new session ID the next time a new url is open or 
the page is refreshed. If something is put on the session (HttpContext.Current.Session["Hello] 
= "hello") however, ASP.NET will issue a cookie called ASP.NET_SessionId. This cookie contains 
the user's session ID and the cookie will expire at the end of the session (when you close 
your browser).

有关详细信息,请参见会话cookie

    Webpages have no memories. A user going from page to page will be treated by the 
website as a completely new visitor. Session cookies enable the website you are visiting to 
keep track of your movement from page to page so you don't get asked for the same 
information you've already given to the site.
ASP.Net中的会话Cookies

    When a user connects to an ASP.NET application, a unique session ID will be affiliated 
with the user. If nothing is put in the session however, no cookie will be sent to the 
browser. This means that the user will get a new session ID the next time a new url is open or 
the page is refreshed. If something is put on the session (HttpContext.Current.Session["Hello] 
= "hello") however, ASP.NET will issue a cookie called ASP.NET_SessionId. This cookie contains 
the user's session ID and the cookie will expire at the end of the session (when you close 
your browser).
如需有关详细信息,请参阅

您访问并看到
请登录
消息

您可以登录该站点。在那之后,你在你的浏览器中重新写入,自动重定向你的消息框

例如,
会话cookie

就是这样

您访问并看到
请登录
消息

您可以登录该站点。在那之后,你在你的浏览器中重新写入,自动重定向你的消息框


这是发生在会话Cookies上的
Session Cookies

see ALL的可能重复,请注意,如果您在欧盟,您应该注意一个新的指令:see ALL的可能重复,请注意,如果您在欧盟,您应该注意一个新的指令:因此,我说的对吗,你给他们写东西的方式是这样的:HttpContext.Current.Session[hello]=“hello”;那么,我是否可以正确地说,你给他们写东西的方式是这样的:HttpContext.Current.Session[hello]=“hello”;