Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created March 28, 2020 13:17
Show Gist options
  • Save CoreProgramm/4a9078cd8a1046a1c6bb900c112a08f8 to your computer and use it in GitHub Desktop.
Save CoreProgramm/4a9078cd8a1046a1c6bb900c112a08f8 to your computer and use it in GitHub Desktop.
Difference Between Response.Redirect() and Server.Transfer() in ASP .NET
//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