5

https://xxx.xxx.xxx.xxx/AppName/(S(fuzxravpfxmtjtifjcd5dt0n))/Views/Reports/Page01.aspx

What are the characters between /AppName/ and /Views/ and how did they get into my url? The url is actually https://xxx.xxx.xxx.xxx/AppName/Views/Reports/Page01.aspx but that random string is being inserted somewhere in the process before the page is viewed.

We recently switched from in-process state management to using SQL Server. Nothing else about the application changed and we can't go back to in-proc.

What are these characters and can we hide them?

Any thoughts? Thanks!

DenaliHardtail
  • 27,362
  • 56
  • 154
  • 233

1 Answers1

6

That is your SessionState ID since you are apparently using Cookieless SessionState. You can adjust this in your web.config

Documentation: http://msdn.microsoft.com/en-us/library/aa479314.aspx#cookieless_topic2

theChrisKent
  • 15,029
  • 3
  • 61
  • 62