Answer Posted / sushil
asp.net supports 2 types of sessions
inprocess:session maintained by application domain[default]
outprocess:session maintained outside application
domainexternal to worker process.the external process can be:-
(i)state server:is a service of o/s which comes with .net
installation.this supports temopary storage.
(ii)sqlserver:persistent storage is supported.
(iii)custom:requires manual coding
cookieless session:it is a concept of providing sessionid to
client by appending to url.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Explain asp.net mvc request life cycle? : asp.net mvc
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
What is http request and response?
What are the ways to sending the data in ASP.NET page?
Which class is used to send an email message from an ASP.NET Web page?
Will the asp.net validators run in server side or client side? How do you do client-side validation in .net?
Why we are using mvc instead of asp.net? : Asp.Net MVC
Describe the diffeerence between inline and code behind?
Explain global assembly cache.
Explain the role of global.asax?
Describe session handling in a webfarm, how does it work and what are the limits?
What is application in asp net?
Fetch one page value to another page without using state-managment ?
Which asp.net objects encapsulate the state of the client and the browser?
Explain the benefits of viewstate?