I need to rename the ASP.NET_SessionId cookie created by default by ASP.NET. Let's say I want it's named "foo". Is it possible?
Add to your web.config:-
<system.web> <sessionState cookieName="foo" /> </system.web>
2.1m questions
2.1m answers
60 comments
57.0k users