RadTabStrip for ASP.NET

Cross-page postback Send comments on this topic.
See Also
ASP.NET 2.0 features > Cross-page postback

Glossary Item Box

ASP.NET 2.0 introduces the ability to have an ASPX page postback to a different ASPX page with cross page postbacks. This can be achieved by setting the PostBackUrl property to the page that will handle the postback. Once in the second page you can access the controls from the previous page by accessing the Page.PreviousPage property.

ASPX Copy Code
<rad:RadTabStrip
   
ID="RadTabStrip1"
   
runat="server"
   
Skin="WinXP"
   
AutoPostBack="true"
   
PostBackUrl="CrossPageCS.aspx"
   
>
See live examples of this functionality at www.telerik.com.

See Also