What are cookieless sessions?

前端 未结 4 985
粉色の甜心
粉色の甜心 2020-12-05 15:38

In ASP.NET, I\'m a bit confused about role of cookies in session state. Whats is the difference between normal session state and cookieless session state?

4条回答
  •  一向
    一向 (楼主)
    2020-12-05 16:38

    The cookie less session doesn't use a cookie is user's browser to store session state. Instead it stores the session either in the page itself or in the url. Read here for a comparison.

提交回复
热议问题