Hi,
I am having a problem with my Forms Authentication timeout. I am using custom authentication with the following scenario:
1. Username & encrypted password stored in database
2. login.aspx form has box for username and password entry
3. Click OK, username and password are encrypted to check against value in the database
4. If they match, check Roles (also stored in Database)
5. Return list of Roles separated by "|"
6. Make FormsAuthenticationTicket
7. Redirect to requested page.
All works well for signing in and using the site until, I stop (no page requests) for more than five minutes. After that I get redirected to the login page again. I've tried various combinations in the web.config and the expiry date in the Ticket, none of which seem to work. I've searched my code for FormsAuthenticationTicket and it only appears in the login page. Funny thing is that it seems to wo ...
Go to the complete details ...