Kelly Cline
Kelly Cline

Reputation: 2246

ASP.NET MVC 4 Key-like characters in my URL

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

Answers (1)

Francois
Francois

Reputation: 10968

I think you are using a "cookieless session state" mode.

Have a look at your web.config.

<sessionState cookieless="true" />

MSDN

Cookieless Session State Explained

Upvotes: 1

Related Questions