Wednesday, February 27, 2008

Send user automatically to a different page

Server.Execute The EXECUTE method transfers execution across to a second page, executes that in its entirety and then return control to the original page

Server.Transfer The Transfer method TRANSFER execution across to a second page, and executes that in its entirety, but does not return to the original page.
  • Only works with sites running on server
  • Maintains the original URL in the browser address window
Response.Redirect The REDIRECT method redirects the user to a different URL.

No comments: