web analytics

Response.Redirect, Server.Execute and Server.Transfer in ASP.NET

Options
@2016-12-13 13:35:50

Response.Redirect() will send you to a new page, update the address bar and add it to the Browser History. On your browser you can click back.

Server.Transfer() does not change the address bar. You cannot hit back. You shouldI use Server.Transfer() when you don't want the user to see where you're going.

Comments

You must Sign In to comment on this topic.


© 2024 Digcode.com