Saturday, March 31, 2012

Simple - Moving to another page using a button

I've written the code to do a search from one page and display the results o
n
another - and then I got stuck (because I'm just beginning)
It's amazing how difficult it can be to find something so easy.
How do I navigate to another page' (VB.NET)jonefer wrote:
> How do I navigate to another page'
Response.Redirect("otherpage.aspx", true);
Chris Priede
Thank you!
"Chris Priede" wrote:

> jonefer wrote:
> Response.Redirect("otherpage.aspx", true);
> --
> Chris Priede
>
>
or use
Server.Transfer()
it's faster, but you loose the history in the browser.
But that is sometimes a good thing.
Remy Blaettler
www.collaboral.com

0 comments:

Post a Comment