What is the difference between application object and
session object?

Answers were Sorted based on User's Feedback



What is the difference between application object and session object?..

Answer / linton lazar

Application object can store the value through out the
application.It using Application.lock(),Application.unlock
() for store the values.

Sessions helps to preserve data across successive accesses.
These can be done on a per user basis, via the use of
session objects. Session objects give us the power to
preserve user preferences and other user information when
browsing a web application

Is This Answer Correct ?    12 Yes 1 No

What is the difference between application object and session object?..

Answer / sridevipc

A session is the time for which a particular user interacts
with a web application.

that data stored in session is not permanent and data
stored is usually only available to a specific user

Sessions serve as a way to transport and maintain user data
in web pages, such as forums, or e-commerce websites.

The Application object stores data that is shared accross
the application and not for a specific user. Internally the
values of both the Session and Application objects are
stored in a key/value pair (HashTable). All data stored in
Application in stored 'in process', meaning if you restart
your application all data in lost (I will show you how to
maintain all application data in another tutorial).

Is This Answer Correct ?    5 Yes 1 No

What is the difference between application object and session object?..

Answer / anand gopal makwa munger

You can use Application to store information that is accessible from all web page but it is not user-specific.To initialized application variable respond to the Application_Start event in Your Global.asax File

You can use Session to store user-specific information that is accessible from all web page. To initialized session variable respond to the Session_Start event in Global.asax File.

Is This Answer Correct ?    1 Yes 0 No

What is the difference between application object and session object?..

Answer / kinjal panchal

Session Object:- Using the session object u can store data
for some specific user.data not store permanently in the
session.
for Example:- using the session user go throw internal pages
in the web applications up to time out of the session
and the best example of the session is e-commerce site.
in this u store the product in the session with uses other
pages of applications.

Application object:- in application object data not store
permanently but any time u modify application object using
lock() and unlock().

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

Why do we need asp.net?

0 Answers  


can u any one tell me clearly where is stored cache datas?

2 Answers   Apollo,


How will you load dynamic assembly? How will create assesblies at run time?

0 Answers  


What are the built-in objects in asp.net?

0 Answers  


If you are using two select queries and retrieving data. how do you access second query's result set using data reader?

1 Answers   Cap Gemini, Keane India Ltd, MindSquare,






When Garbage Collector runs in an Application? 1)Application is running form more than 30 min. 2)On every 1/4th milisecond 3) Randomly 4) Application is running on low of memory

2 Answers   PCS,


What is postback pixel?

0 Answers  


Is data can be edited in the Repeater control?

2 Answers  


where is declare global variable in asp.net and what is use of global variable

3 Answers  


What are assemblies and namespaces and explain the difference between them ?

0 Answers  


Difference Between ReadOnly and Constant Variable in compile time and Run Time.

3 Answers   Phoenix Technologies, Quadrant,


How many web.copnfig can exists in a web application & which will be used ?

3 Answers   MMTS,


Categories