T
Terry Holland
We have an application that requires users to login
<authentication mode="Forms">
<forms name="adAuthCookie" loginUrl="~/login.aspx"
defaultUrl="~/secure/default.aspx" timeout="60" cookieless="UseCookies"
domain="XXXXX"/>
</authentication>
Once users have logged in they are able to use the application, but at
various points, they get redirected to the login.aspx page regardless of
whether they have been posting back to server or not. My understanding was
that the
timeout="60"
attribute instucted application to redirect users to ~/login.aspx after 60
mins if inactivity (server postbacks).
Could someone tell me what I need to do to ensure that users are not
redirected to login page unless they are inactive for 60 mins
tia
Terry
<authentication mode="Forms">
<forms name="adAuthCookie" loginUrl="~/login.aspx"
defaultUrl="~/secure/default.aspx" timeout="60" cookieless="UseCookies"
domain="XXXXX"/>
</authentication>
Once users have logged in they are able to use the application, but at
various points, they get redirected to the login.aspx page regardless of
whether they have been posting back to server or not. My understanding was
that the
timeout="60"
attribute instucted application to redirect users to ~/login.aspx after 60
mins if inactivity (server postbacks).
Could someone tell me what I need to do to ensure that users are not
redirected to login page unless they are inactive for 60 mins
tia
Terry