Category : .Net Interview Questions

Difference between Server.Transfer and Response.Redirect Server.Transfer transfer page processing from one page to another page directory to the next page without making a round trip back to the client browser.This provides a faster response with a little less overhead on the server.Server.Transfer does not update the URL. Response.Redirect is used to redirect the user browser ..

Read more

Types of session management Session object is used to store state specific information per user basis.Session object can be configured 3 ways based on availability and scalability of web application. 1). In Process Mode: This is default mode and useful for small application which is hosted on single server. Advantages: -Fastest mode. -Simple configuration. Disadvantages: ..

Read more