How you will handle session when deploying application in
more than a server? Describe session handling in a webform,
how does it work and what are the limits?
Answers were Sorted based on User's Feedback
Answer / frederickson
If we specify mode ="Inproc" session will store in
webserver itself under aspnet_wp.exe
If we specify mode = "Sqlserver" session will store in
sqlserver and it has to be serialized.
Is This Answer Correct ? | 8 Yes | 2 No |
Answer / frederickson
we have Inproc server and outproc server
for storing session in different server we have to specify
in the webcofing mode="state" and state mode session to be
srialized. and it stores in aspnet_state.exe
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / adrien
You have 3 options.
1. Do not use any session variables.
2. Use a dedicated State Server (or state Server Farm)
3. Use SQL Server for state management
Is This Answer Correct ? | 3 Yes | 1 No |
How to call a function when a class implements 2 interfaces and function is present in both interfaces?
What is class method c#?
Define satellite Assembly in .NET?
Are there constructors in c sharp?
3. Use layered architecture for coding. s.no name description 1 abc xxxxxxxxx 2 abc xxxxxxxxx 3 4 5 6 7 8 Select all Clear all Add Delete Name Description Save close
List down the fundamental oop concepts?
What is the use of private constructor in c#?
What is a system lock?
What is clr in c#?
Why can?t you specify the accessibility modifier for methods inside the interface?
What is the xml document structure?
what is a static constructor?