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.
| |
Copy Code |
|
<rad:RadPanelBar PostBackUrl="CrossPageCS.aspx" runat="server" ID="RadPanelBar1" Skin="Telerik" > |
See Also