Cross-Page Navigation Techniques in ASP.NET

Ting (one of the key guys on the ASP.NET Team) has posted an awesome blog post detailing all of the different techniques for doing Cross-Page navigation in ASP.NET, including: client-side redirects, server-side redirects, the new ASP.NET 2.0 cross-page posting feature, the new ASP.NET 2.0 multi-view control, and the new ASP.NET 2.0 Wizard Control.  In his post he includes a sample for each.

 

Definitely something I’d recommend to check out and review.

 

Hope this helps,

 

Scott

 

Published Saturday, December 17, 2005 11:48 AM by ScottGu

Comments

# re: Cross-Page Navigation Techniques in ASP.NET

Saturday, December 17, 2005 9:29 PM by Frank
Hi Scott,

Do you know if its possible to retrieve non-webcontrols variables from a PreviousPage?

something like:
page 1:
this.ViewState.Add("myValue", "bladiebla");
page 2:
this.PreviousPage.ViewState["myValue"]

tnx,
Frank

# re: Cross-Page Navigation Techniques in ASP.NET

Sunday, December 18, 2005 10:41 AM by Fabrice
May I suggest another option?
http://metaSapiens.com/PageMethods
It comes with support for GET and POST.