Jaroslav Urban
Jaroslav Urban

Reputation: 1279

Strange url on localhost when debugging web app in C#.Net2

http://localhost/XYZ/Client/(S(enlodz55ov4ncafza0gpp045))/Info/Rates.aspx

Does anyway know what /(S(enlodz55ov4ncafza0gpp045))/ means?

Any help appreciated.

Upvotes: 0

Views: 186

Answers (1)

Lazarus
Lazarus

Reputation: 43084

It's the session identifier if you're using cookieless session state.

See this MSDN article: http://msdn.microsoft.com/en-us/library/aa479314.aspx

Upvotes: 2

Related Questions