Hi friends,
my queation is why session ID changes on each postback?
here is my web.config:
<authentication mode="Forms">
<forms
loginUrl="login.aspx"
timeout="30"
protection="All"
name=".ASPXAUTH"
path="/"
requireSSL="false"
slidingExpiration="true"
cookieless="UseCookies"
defaultUrl="index.aspx"/>
</authentication>
<sessionState cookieless="true" timeout="30" />
what I have to do to stop this?
Go to the complete details ...