Click here to Skip to main content
15,893,814 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I'm using VS 2010 (Code is VB) with SQLServer 2008 R2 on a cloud server with Windows Server 2008.

'**************************************************************************************************************************

In Web Config I set session state as

<sessionstate cookieless="AutoDetect" mode="InProc" timeout="1440">

Authenticatio is:

<authentication mode="Forms">

<forms loginUrl="~/Default.aspx" timeout"30" cookieless"AutoDetect" slidingExpiration"true"/>

'***********************************************************************************************************

Now if/when 1 of my users times out, other users are locked out. What am I doing wrong? Thank you for any advice you care to offer............ Phil Hoop
Posted

1 solution

Once the application times out, take them to the login page.
Other users should then be able to generate their own authentication ticket and login.
 
Share this answer
 
Comments
PhilHoop 19-Mar-14 1:06am    
Thank you for your comment. That is what happens, both the Initial user and all subsequent users are bounced back to the Login Screen after logging in and attempting to navigate through the application's screens, subsequent login attempts continue this vicious circle until I reset the application Pool. The SessionState is: <sessionstate cookieless="AutoDetect" mode="InProc" timeout="1440">. I suspect some conflict between the SessionState and Authentication statements, but that is where I am stuck. ...........Phil Hoop

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900