Multiple choice technology web technology

Which of the following transfer execution directly to another page?

  1. Server.Transfer

  2. Response.Redirect

  3. Both A) and B)

  4. None of the Above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Server.Transfer transfers execution directly to another page on the server side without requiring a round-trip to the client. It preserves the original URL and does not trigger a new HTTP request. Response.Redirect sends a 302 response to the client, causing a new request, which is slower and changes the URL.