Created
March 28, 2020 13:17
-
-
Save CoreProgramm/4a9078cd8a1046a1c6bb900c112a08f8 to your computer and use it in GitHub Desktop.
Difference Between Response.Redirect() and Server.Transfer() in ASP .NET
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//This will work. | |
Response.Redirect("http://www.google.com"); | |
//This will not work. | |
Server.Transfer("http://www.google.com"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment