Interview Question
Qus: What is the difference between Server.Transfer and Response.Redirect?
The Response.Redirect method redirects a request to a new URL and specifies the new URL while the Server.Transfer method for the current request, terminates execution of the current page and starts execution of a new page using the specified URL path of the page.
Answers (1)