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
How Can assign alias name for ASP.NET Web API Action?
Tell me what is the request flow used for asp.net mvc framework? : asp.net mvc
In how many ways we can retrieve table records count?
What are the advantages of using session?
Describe the sequence of action takes place on the server when ASP.NET application starts first time?
What is the question mark in a url?
Explain the difference between asp and asp.net?
What are server-side comments in ASP.NET?
Explain about the Class view window?
Explain how can we inherit a static variable?
What are the different web pages?
How to store checkbox value in database in asp.net mvc? : Asp.Net MVC
What is server side in asp.net?
Define the types of configuration files.
What are the differences between code behind and code inline?