The setting "UseUri" is another way of telling ASP.NET not to use cookies to manage sessions. When cookies are not used for session management, ASP.NET embeds the session identifier within the URI of each inbound request. Those are the "stray/random" characters you see in what you posted - the web server, and then, ASP.NET, will parse that data from the string and use that to track the session rather than via a client-side cookie.
If your application is not working with cookieless="UseUri" or "true," it would suggest that there is a problem with the way the application handles the "mangled" URL's that contain the session information.
Re: Unknown Error when cookieless="UseUri" in web.conf
Re: Unknown Error when cookieless="UseUri" in web.conf
If your application is not working with cookieless="UseUri" or "true," it would suggest that there is a problem with the way the application handles the "mangled" URL's that contain the session information.
I hope that helps.
David
Re: Unknown Error when cookieless="UseUri" in web.conf
I have just found resolution for that problem.
In my web.config:
In .aspx file:
In .aspx.cs file: