Reputation: 691
When I try to run the application the internet explorer loads my page with url like
http://localhost:1583/PMS/(S(gguhu4jtwv4waa45q5q2ehzk))/GenerateReport.aspx
And when I try to publish my site to the server, there too some string comes along with the url. Earlier it was working correctly. Why this (S(gguhu4jtwv4waa45q5q2ehzk)) comes with the url?
Upvotes: 2
Views: 75
Reputation: 2158
It seems that you use cookie less session so session key inserted in your url automatically. Take a look at this: http://msdn.microsoft.com/en-us/library/aa479314.aspx
Upvotes: 0
Reputation: 8829
It's session identifier, you're trying to use cookieless sessions.
Details: http://msdn.microsoft.com/en-us/library/aa479314.aspx
Upvotes: 1
Reputation: 31077
Your application is configured with cookieless SessionIDs. When you access your site in a new browser you are creating a new session, hence a new id (that's the string you've highlighted above).
Upvotes: 2