Answer Posted / manikanta.srinu
Web is Stateless, which means a new instance of the web
page class is re-created each time the page is posted to
the server. As we all know HTTP is a stateless protocol, it
can't hold the client information on page. If user inserts
some information, and move to the next page, that data will
be lost and user would not able to retrieve the
information. So what we need? we need to store information.
Session provides that facility to store information on
server memory. It can support any type of object to store
along with our custom object. For every client Session data
store separately, means session data is stored as per
client basis.
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Which dll translate xml to sql in internet information server (iis)?
Explain me difference between public and static modifiers?
Explain garbage collection?
A developer company sends dlls to the client. Some client is not happy current functionality, so request some modification. Developer made some changes and send new dll to all clients. Some client is happy with old version, tell me minimal change to so that neither clients get affected?
What are the differences between an interface and an abstract class in .net?
Explain how to manage pagination in a page using .net?
Explain can the validation be done in the server side? Or this can be done only in the client side?
What is common type system (cts)?
Explain what is reflection in microsoft .net context?
How is .net able to support multiple languages?
I want to serialize instances of my class. Should I use xmlserializer, soapformatter or binaryformatter?
How can you instantiate a tuple?
What are the similarities and difference between class and structure in .net?
Will it go to finally block if there is no exception happened?