本文介绍了不断的SessionID在ASP.NET MVC为什么变化?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图跟踪的东西,使用的SessionID,因为他们关键的对象。
I am trying to keep track of something and using the SessionID as they key to that object
然而,会话ID每2-3 reqiests变化不应该是保持不变?
However the SessionID every 2-3 reqiests changes shouldn't it remain the same?
HttpContext.Session.SessionID
时的code我使用。
Is the code I am using.
推荐答案
我见过,即使没有MVC这种情况发生。如果我没有记错,ASP.NET保持,直到你把东西放到会话变量分配新的会话ID。
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.
这篇关于不断的SessionID在ASP.NET MVC为什么变化?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!