tags:

views:

469

answers:

5

Hi. 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?

+1  A: 

I don't recall it correctly but I think you can rename it by changing the web.config file.

Seach for the sessionState element of the web.config.

Paulo Santos
+4  A: 

See sessionState Element. look at the cookieName attribute, which will change it from the default of "ASP.NET_SessionId".

RichardOD
+7  A: 

Add to your web.config:-

<system.web>
    <sessionState cookieName="foo" />
</system.web>
AnthonyWJones
First answer with the correct example. :-)
RichardOD
+1  A: 

You can set this in the <sessionState> configuration setting in your web.config file:

<system.web>
    <sessionState cookieName="myCookieName" />
</system.web>
Kev
You missed off the closing "
RichardOD
Just spotted as well...fixed...appreciated.
Kev
+1  A: 

Yes. You can do it in your web.config file:

<sessionState cookieName="foo" />
Rune Grimstad