Difference between application and session ?
Answer Posted / ajay gupta
application state is a state where we hav the information
that is global for the application,
where as
session state is a state which is maintained as a
per-client basis.
whenever a user first accesses a page a session id is
generated by asp.net.
that session id is then transmitted between the client and
the server via Http either with the help of client-side
cookies or encoded in a mangled sessions of the urls.
so the next time the users accesses,state associated with
that session id can be viewed or modified.
| Is This Answer Correct ? | 33 Yes | 4 No |
Post New Answer View All Answers
What is the compiled object?
What is inproc mode in session?
how to implement some securty aspect in our application i.e 1.cookie poisioning. 2.data encryption. 3.forcefull browsing 4.sql/code injection 5.securing web app by using web services ........my question is how to implement these thing in our application is this done by hard coding or by help of some tool
Is react a template engine?
Can you explain how ASP.NET application life cycle and page life cycle events fire?
How does exception management works in ASP.NET?
What is IPostBack? How to use it?
What is content place holder?
What websites use asp.net?
What are merge modules?
In What Order Do The Events Of An Aspx Page Execute. As A Developer Is It Important To Undertsand These Events?
What is the size of Get method and how much data it can store?
Explain the difference between asp.net mvc and asp.net webforms
Where session id is stored?
What is the difference between pathparam and queryparam?