So I read an article on Response.Redirect that say’s “its like a suggestion” as compared to Server.Transfer which happens whether the client wants to or not. What does this mean? Is there some kind of event that we can offer a user to say “well nope nm I don’t want to redirect to that page”?
Share
Server.Transferwill execute the new page immediately and send its result to the client.The client stays at the original URL doesn’t see anything unusual.
Response.Redirectsends a special code, called an HTTP 302, that tells the client to send a new request to a different URL.