web farm .. how does session shuld be stored... if inproc
used? does the session
persists from one server to other.
Answers were Sorted based on User's Feedback
Answer / mandar
In case of web farm, we can not have in proc session state.
Session can not be persist from one server to another. we
have to use the state server or database for session storage
Is This Answer Correct ? | 16 Yes | 2 No |
Answer / hozefa
There are 5 session modes as below,
void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started
Session.Mode = SessionStateMode.InProc;
Session.Mode = SessionStateMode.SQLServer;
Session.Mode = SessionStateMode.StateServer;
Session.Mode = SessionStateMode.Custom;
Session.Mode = SessionStateMode.Off;
}
These 2 session modes should be used :
Session.Mode = SessionStateMode.SQLServer;
Session.Mode = SessionStateMode.StateServer;
Is This Answer Correct ? | 12 Yes | 0 No |
Describe session handling in a webfarm?
What is JIT, what are types of JITS and their purpose ?
Explain the differences between clr & cts?
what is a .xap file? Explain with an example.
Why would anyone need to implement their own hashtable or linked list?
What does the "EnableViewState" property do?
What is the mvc model?
What is .net framework and what are the main components of it?
What does mvc represent in asp.net? : asp.net mvc
what is view stat how it is use ?
what are the levels of securities need to be considered for the finincial web application?
What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc