Multiple choice technology programming languages What is the difference between Server.Transfer & Response.Redirect Server.Transfer needs a roundtrip, Response.Redirect does not Server.Transfer can transfer user between 2 applicaions Response.Redirect needs roundtrip, Server.Transfer does not No Difference Reveal answer Fill a bubble to check yourself C Correct answer Explanation Response.Redirect instructs the browser to request the new URL, requiring a client-to-server roundtrip. Server.Transfer executes the destination page directly on the server without informing the browser, saving a network roundtrip.