If I'm developing an application that must accomodate multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?

Showing Answers 1 - 11 of 11 Answers

kumar

  • Sep 12th, 2005
 

u can use state server for maintaining session in this case.

  Was this answer useful?  Yes

kumar

  • Sep 12th, 2005
 

u can use state server for maintaining session in this case.

  Was this answer useful?  Yes

binzthomas

  • Feb 7th, 2008
 

Set the sessionstate mode as 'stateserver'

SessionState mode=”stateserver” stateConnectionString=”tcpip=127.0.0.1:42424? sqlConnectionString=”data source=127.0.0.1;user id=sa;password=” cookieless=”false” timeout=”30?


  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions