SessionState - type of sessionstate and when and how to use
it
Answer Posted / alb.shah
SessionState tag is used to define session attributes.
One very important is Mode which can have values: "state
server", "SqlServer", "InProc"; depending how you want to
preserve session state.
"State server" is used if you want the state to be
preserved in other server.
"SqlServer" is used if you want the state to be preserved
on a SQL database.
"InProc" is used if you want the state to be preserved in
the same process where the asp.net page is running.
Other attributes that are also included for the
SessionState tag are: ConnectionString,
SqLConnectionString, userId, password, cookiless, tiemout.
if the session state is going to be preserved in other
server, or can be ""SqlServer" if session state is going to
be preserved in a SQL database
Configuring session state: Session state features can be
configured via the <sessionState> section in a web.config
file. To double the default timeout of 20 minutes, you can
add the following to the web.config file of an application:
<sessionState
timeout="40"
/>
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Which property is used to identify the Page is Post Back in ASP.NET?
What is postback and autopostback in asp.net?
What is app_code folder in asp net?
Can we store object in viewstate?
What are the features that make asp.net more used framework? : asp.net mvc
How do cookies work?
Explain parts of assembly?
Where do the cookie state and session state information be stored?
Can user control be stored in library?
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
What is asp.net caching?
Explain the concept of event bubbling in ASP.NET?
Is asp.net is a programming language?
How do we assign page-specific attributes?
What are the different types of validation controls in asp.net?