Why do you create a cookie with name ASP.NET_SessionId?

0

I have a project in ASP.NET MVC 5 in which when reviewing the cookies of my application there is one that is called ASP.NET_SessionId , which does not stop what it is and why it is created.

Does anyone know anything about this cookie ?

    
asked by vcasas 14.06.2018 в 00:02
source

1 answer

0

It is the cookie generated by ASP.NET for sessions.

You can disable that cookie by adding <%@ EnableSessionState=False %> to the start of the aspx page

    
answered by 15.06.2018 в 12:19