Reputation: 5859
I have an ASP.NET MVC 3 project and every page I go to the url will have stuff like #.TpjRmN6XudB appended to. Any idea why this could be?
Upvotes: 2
Views: 161
Reputation: 1194
You probably turned cookieless session state to on.
Check your application web.config for
<sessionState mode="InProc" cookieless="true"/>
and change to
<sessionState mode="InProc" cookieless="false"/>
Upvotes: 4