ASP.Net Caching Questions

  1. 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.

  2. Read more

    ASP.Net Interview Questions - 2

    1. Can we make sessions do not use cookies?

      We need to enable "cookieless" property in Web.config.


      <sessionState cookieless="true" timeout="20" />

    2. Read more

      ASP.Net Interview Questions - 1

      1. 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):

        Read more

        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:

        Read more