Saturday, January 24, 2009

Navigating Pages in asp.net

If you are trying to go to another page:
Response.Redirect ("Page.aspx")

If you are trying to go to a folder:
Response.Redirect ("~/Folder/Page.aspx")

If you are trying to come from a folder:
Response.Redirect ("../Page.aspx")

No comments:

Post a Comment