asp.net mvc 3 - ASP.NET_SessionId not being refreshed after Session.RemoveAll() -


i'm trying persist asp.net_sessionid cookie value (for auditing purposes) , find same value being used across sessions. example, while in development, when hit 'f5', i've started new session, right? i'm seeing same value being displayed.

another (more real world) example, i'm logged in; make , note of cookie value; , log out (fires code below) still see same cookie value.

    public actionresult logout()     {         formsauth.signout();         session.removeall();         return redirecttoaction("index", "home");     } 

thx


Comments

Popular posts from this blog

How to mention the localhost in android -

php - Calling a template part from a post -

c# - String.format() DateTime With Arabic culture -