vote up 2 vote down star
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?

HttpContext.Session.SessionID

Is the code I am using.

flag

4 Answers

vote up 2 vote down check

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.

link|flag
it looses session even if you put something into it. Machine key inside web.config is the only thing that addresses that issue – Hrvoje Nov 12 '08 at 15:06
Only if there was a web farm involved. And if you read the OP's comment in one of the answers, you'll find that adding an item to the session variable did fix the problem. – maxam Nov 12 '08 at 15:41
My hosting provider doesn't have web farm, and adding stuff to session don't fix it. I still loose it after few minutes - even if i have lot of stuff in session (loged user, his shop basket,...) I tried with 2 hosting providers – Hrvoje Nov 13 '08 at 9:40
This is rather strange behavior but it is true, assigning any data to Session collection solves this problem. – zidane Sep 23 at 7:37
vote up 0 vote down

I am working on a .NET MVC cart application and I added

Session["myVar"] = "1234";

to the Page_Load method found in the Default.aspx.cs code. I also added

<%= this.Session.SessionID %>

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!

link|flag
vote up 0 vote down

Try with adding machine key into your web.config:
Online key generator: http://aspnetresources.com/tools/keycreator.aspx It seems that server resets machine key for client and generates new one with new session id, every few minutes, which is much lower than it should. Don't know if that's bug or feature:)
Also, you can increase your session state timeout, which is i think 20min by default.

link|flag
vote up 2 vote down

I would look into using TempData to keep track of something.

link|flag
Actually all I had to do was assign a session variable a value and that made it stick.. – dswatik Nov 11 '08 at 19:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.