Application & session works on server side - ASP.NET Introduction
Q. Which of the following works on server side?- Published on 19 Oct 15a. ViewState
b. HiddenField
c. Application and session
d. All of the above
ANSWER: Application and session
Application and session objects works on the server side and more secure than client side objects.
• Application State:
This object stores the data that is accessible to all pages in a given Web application.
• Session State:
Session object store user - specific data between individual requests. This object is same as application object but it stores the data about particular user.