Hi..
What is session and application in .NET ? Please give any example ?
Thanks...
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Prabhu RajaPosted Oct 24, 2011, 1:15 AM
Application object:
Application object is used to store data which is visible across entire application and shared across multiple user sessions. Data which needs to be persisted for entire life of application should be stored in application object.
Session object:Session object is used to store state specific information per client basis. It is specific to particular user. Session data persists for the duration of user session you can store session's data on web server in different ways. Session state can be configured using the section in the application's web.config file.
Check out this Article : ASP.Net State Management Techniques
Abhimanyu K VatsaPosted Oct 24, 2011, 12:31 AM
http://www.c-sharpcorner.com/UploadFile/suthish_nair/5809/
For application, look here
http://www.coveryourasp.com/Application.asp
Satyapriya NayakPosted Oct 23, 2011, 11:42 PM
Please refer the below two links.
http://asp.net-tutorials.com/state/sessions/
http://www.c-sharpcorner.com/UploadFile/annathurai/542/
Thanks
Giwa AbdulhakeemPosted Oct 23, 2011, 9:12 PM
Regards