I am trying to keep track of something and using the SessionID as they key to that object
However the SessionID every 2-3 reqiests changes shouldn't it remain the same?
HttpContext.Session.SessionID
Is the code I am using.
|
1
|
I am trying to keep track of something and using the SessionID as they key to that object However the SessionID every 2-3 reqiests changes shouldn't it remain the same?
Is the code I am using.
|
||
|
|
|
|
I've seen that happen even without MVC. If I remember correctly, ASP.NET keeps assigning new session ids until you place something into the Session variable. |
||||||||
|
|
|
I am working on a .NET MVC cart application and I added
to the Page_Load method found in the Default.aspx.cs code. I also added
to the Site.Master footer. I then rebuilt my app and browsed the various pages of my app and the footer displays the same session id for all pages as expected! |
||
|
|
|
|
Try with adding machine key into your web.config: |
||
|
|
|
|
I would look into using TempData to keep track of something. |
||
|