is it possible to achieve sliding expiration using cookieless authentication in asp.net. Here is my web.config authentication section:
<authentication mode="Forms">
<forms loginUrl="login.aspx"
protection="All"
timeout="2880"
name=".USERLOGINCONTROLAUTH"
path="/"
requireSSL="false"
slidingExpiration="true"
defaultUrl="login.aspx"
cookieless="false"
enableCrossAppRedirects="false"/>
</authentication>
I've tried setting slidingExpiration attribute to true but no luck. Later I also went through MSDN documentation and it says it extends the timeout of valid cookies. Please help. Thanks a lot in advance !