About some Asp.net project after the release of the url gargish solution

  • 2020-05-12 02:27:28
  • OfStack

When I type in the domain name of the website, when I open the webpage, url will be followed by a "scrambled" paragraph.

http://www.XXXX.com/(S(jnzpixfqi5rge5rnl45vdb45))/index.aspx 

Finally, when I look at web.config, I see a sentence
< sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="true" timeout="20"/ >
If you think about it for 1 second, cookieless means no cookie. We know that websites need to use 1 session to save login information. Without cookie, session will not work. That is to add a one-only id to url to represent a single link access. After cookieless="false", the problem is solved.

Related articles: