Home All Groups Group Topic Archive Search About

Simple - Moving to another page using a button

Author
16 Dec 2005 8:10 PM
jonefer
I've written the code to do a search from one page and display the results on
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)

Author
16 Dec 2005 8:52 PM
Chris Priede
jonefer wrote:
> How do I navigate to another page??

Response.Redirect("otherpage.aspx", true);

--
Chris Priede
Author
16 Dec 2005 8:59 PM
jonefer
Thank you!

Show quote
"Chris Priede" wrote:

> jonefer wrote:
> > How do I navigate to another page??
>
> Response.Redirect("otherpage.aspx", true);
>
> --
> Chris Priede
>
>
>
>
Author
16 Dec 2005 9:10 PM
Remy
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

AddThis Social Bookmark Button