DotNet Interview Question 1 of 100:
What is the difference between Response.Redirect and Server.Transfer in ASPdotNet?
Answer:
`Response.Redirect` sends a new request from the client to the server and it updates the URL in the browser. `Server.Transfer` does not send a new request and does not update the browser's URL.