What is the difference between application object and
session object?
Answer Posted / 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 |
Post New Answer View All Answers
what is meant by sitemapnode ?
What is the postback property in asp.net?
Which is the parent class of the web server control?
What symbol specifies the beginning of a query string?
What are the contents of cookie?
What are the namespace classes used in asp.net mvc? : asp.net mvc
How do I know asp.net mvc version? : Asp.Net MVC
IN an ASP.NET Web application if there is any error, how can you debug?
explain code with datachaching with example
What are themes and skins in 2.0, explain usage scenario?
Explain form level validation and field level validation?
What is a page life cycle? What are the events in a page life cycle?
Is asp.net easy to learn?
How can we prevent browser from caching an aspx page?
What is difference between asp state management and asp.net state management?