ASP.Net Caching Questions
-
What is the difference between Cache object and Application object?
The main difference between the Cache and Application objects is that the Cache object provides cache-specific features, such as dependencies and expiration policies.
-
Can we make sessions do not use cookies?
We need to enable "cookieless" property in Web.config.
<sessionState cookieless="true" timeout="20" />
-
What is the sequence in which ASP.NET events are processed ?
Following is the sequence in which the events occur (extremely simplified version, for more detailed description see another post):
A lifecycle of ASP.Net 2.0 webpage
Describe the most important events of a lifecycle of ASP.Net 2.0 webpage
PreInit - Use this event for the following:
January 18, 2008 | Filed Under ASP.Net 2.0 Interview questions | Leave a Comment