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?
Answers were Sorted based on User's Feedback
Answer / raghumadhav tirunagari
Database Support. or Thru state service.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / m venkata murali krishna
The simplest form of this question is , which mode of
session state you need to choose to persist the state
across mulitple webservers?
Answer is: StateServer, SQL Server, may be you can go for
custom also.
Explanation about modes:
ASP.NET session state supports several different storage
options for session data. Each option is identified by a
value in the SessionStateMode enumeration.
InProc mode: which stores session state in memory on the
Web server. This is the default.
StateServer mode: which stores session state in a separate
process called the ASP.NET state service. This ensures that
session state is preserved if the Web application is
restarted and also makes session state available to
multiple Web servers in a Web farm.
SQLServer mode: stores session state in a SQL Server
database. This ensures that session state is preserved if
the Web application is restarted and also makes session
state available to multiple Web servers in a Web farm.
Custom mode: which enables you to specify a custom storage
provider.
Off mode: which disables session state.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / virendra sehrawat
The best way is to maintain log in state cookie.
| Is This Answer Correct ? | 1 Yes | 1 No |
Explain .net mobile selectionlist control? : Microsoft dot net mobile
What is the use of web.config?
What is private constructor? And it's use?
When do I need to use gc.keepalive?
readonly syntax ?
How resource files are used in .net?
Explain the difference between l1 and l2 cache? : Dot net architecture
Explain about generation?
how to create applications by using Visual Studio 2012?
0 Answers TryTechnicals Pvt Ltd,
Explain the difference between inprocess vs out process session state : Dot net architecture
How do I prevent concurrent access to my data?
if i want to validate all the control on web page how i will do