Which method transfers processing directly to a different page without making a round trip to the client?
Explanation
Server.Transfer transfers execution directly to another page on the server without involving the client's browser, unlike Response.Redirect which sends a response to the client to request a new page.