Multiple choice technology programming languages

What is the difference between Server.Transfer & Response.Redirect

  1. Server.Transfer needs a roundtrip, Response.Redirect does not

  2. Server.Transfer can transfer user between 2 applicaions

  3. Response.Redirect needs roundtrip, Server.Transfer does not

  4. 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.