Frequently Asked Interview Questions

What is the difference between Response.Redirect and Server.Transfer?

Server.TransferResponse.Redirect
Redirection happens on the serverRedirect the redirection happens from the browser
This is faster as there is no round trip involvedIt is slower than Server.Transfer as there is round trip from the server to the client browser.
It works only with .aspx filesIt works with .aspx and .Htm pages
Server.Transfer will work with files on the same web server and we can not use this to transfer other server or site.Response.Redirect will work with files on the same web server and other server or site

Most Visited Pages

Home | Site Index | Contact Us