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
What is the difference between debug and release?
Suppose You Want A Certain Asp.net Function Executed On Mouseover For A Certain Button. Where Do You Add An Event Handler?
there is two functions function a and function b like fun a(){.... ..... } fun b() { } in function b i write the coding to add two numbers and i need to dispaly the sum result in function a with out using global variable. how we do?
Is it possible to develop a single web application using ASP.NET webforms and ASP.MVC?
What is base class of button control in .net?
Explain swagger components.
What is clickid?
What are the options in ASP.NET to maintain state?
How to retrieve user name in case of Window Authentication?
What are the advantages of using session?
Can you use c# without .net?
What are the differences between the response.write() and response.output.write()?
How to find out what version of asp.net I am using on my machine?
How can I configure asp.net applications that are running on a remote machine?
Explain the use of resource manager class in .net.