How to remove AspxAutoDetectCookieSupport=1
Posted
by Veejay
on Stack Overflow
See other posts from Stack Overflow
or by Veejay
Published on 2010-03-27T11:32:50Z
Indexed on
2010/03/27
11:43 UTC
Read the original article
Hit count: 1161
ASP.NET
I have a url like http://www.foo.com/Show.aspx?pageid=10. However to some users this gets displayed as http://://www.foo.com/Show.aspx?pageid=10&AspxAutoDetectCookieSupport=1
Now i read that the AspxAutoDetectCookieSupport=1 gets appended as in my web.config since I have my web.config as <sessionState cookieless="AutoDetect"/>
whereas it should be <sessionState cookieless="UseCookies"/>
What I wanted to know is that is there an issue doing this change. Is there any other way to just have the url show up as http://www.foo.com/Show.aspx?pageid=10
© Stack Overflow or respective owner