Luke Belbina
Luke Belbina

Reputation: 5859

ASP.NET MVC 3 #randomstring showing up in URLs

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

Answers (1)

Tadeu Maia
Tadeu Maia

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

Related Questions