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



If I'm developing an application that must accomodate multiple security levels though secure l..

Answer / raghumadhav tirunagari


Database Support. or Thru state service.

Is This Answer Correct ?    4 Yes 0 No

If I'm developing an application that must accomodate multiple security levels though secure l..

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

If I'm developing an application that must accomodate multiple security levels though secure l..

Answer / virendra sehrawat

The best way is to maintain log in state cookie.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Dot Net AllOther Interview Questions

11. diff b/w Dll and Exe

6 Answers   PCS,


What is password attribute of the textbox control of .net mobile? : Microsoft dot net mobile

0 Answers  


Define cache coherency? : Dot net architecture

0 Answers  


How to improve the cache performance? : Dot net architecture

0 Answers  


can u give me real example of how web.config overrides the machine.config file?

0 Answers  






What is serialization, how it works in .NET?

1 Answers  


Which is the best institute in chennai to learn DotNet? Please help.

48 Answers   HCL, Infosys, NIIT,


Let's say I have an existing application written using Visual Studio 6 (VB 6, InterDev 6) and this application utilizes Windows 2000 COM+ transaction services. How would you approach migrating this application to .NET ?

1 Answers  


any one can explain about projectarchitecture and project approach briefly

0 Answers  


How to send e-mail to gmail/yahoo or any other ID from your mail server.I need the code.

1 Answers  


Differences between VS 2005, 2008 and 2010 ?

0 Answers   HCL,


What is the use of delegates

2 Answers  


Categories