What are Session states available and its Uses?
Answers were Sorted based on User's Feedback
Answer / prasad
In process
Out Process
--State Server
-- Sql Server
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / santosh deshmukh
InProc:- In this mode Session state is stored in the memory
space of the
Aspnet_wp.exe process. This is the default setting. If the
IIS reboots or web
application restarts then session state is lost.
StateServer:-In this mode Session state is serialized and
stored in a separate
process (Aspnet_state.exe); therefore, the state can be
stored on a separate
computer(a state server).
SQL SERVER:- In this mode Session state is serialized and
stored in a SQL Server database.
Session state can be specified in <sessionState> element of
application configuration
file. Using State Server and SQL SERVER session state can
be shared across web farms
but note this comes at speed cost as ASP.NET needs to
serialize and deserialize data over
network again and again.
Is This Answer Correct ? | 6 Yes | 1 No |
Explain difference between dataset and datareader?
Which browsers support the xmlhttprequest object?
What does occur first in ASP.Net, Authentication or Authorization?
we are working in .net namespaces like using system.io,system.text. these namespace before we use "using " keyword what means of using?
7 Answers CEI, CSC, HCL, Tech Mahindra,
what is the difference between primary key and foreign key?
How information about the user's locale can be accessed?
Explain form level validation and field level validation?
To match the two different controls which control would we use ?
How to authenticate users using web.config ?
2 Answers Accenture, Amazon, BirlaSoft, Cap Gemini,
What is the T-SQL equivalent of IIF (immediate if/ternary operator) function of other programming languages?
What is server transfer?
What r the asp.net list controls and difference between them?