What is the difference between Response.Redirect and Server.Transfer in ASPdotNet? Question 1of 100:

Опубликовано: 23 Октябрь 2024
на канале: Tech Interview Questions
237
7

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.