How to configure automatic logout?¶
Check the web.config file of the wPage application
<forms loginUrl="Login.aspx"
protection="All"
timeout="1440"
name=".ASPXAUTH"
path="/"
requireSSL="false"
slidingExpiration="true"
defaultUrl="Default.aspx"
cookieless="UseDeviceProfile"
enableCrossAppRedirects="false" />
| timeout | User will be logged out after the defined time (in minutes). Default is 1440 min = 1 Day |
|---|---|
| slidingExpiration | Sliding expiration resets the expiration time for a valid authentication if a request is made and more than half of the timeout interval has elapsed. |