Reputation: 2246
I have an MVC application. When it comes up with its first page, the url looks like this:
http://localhost:34293/(S(skrnsavxop5s4utkycfnzrvs))/MyController/MyAction
What is the parenthetical between the port and the controller and where might it be coming from? I'm really just looking for a place to get started, as I don't normally see this and don't have a clue where it is coming from.
Upvotes: 0
Views: 23
Reputation: 10968
I think you are using a "cookieless session state" mode.
Have a look at your web.config
.
<sessionState cookieless="true" />
Cookieless Session State Explained
Upvotes: 1