RadMenu 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.

  Copy Code
<rad:RadMenu
   
ID="RadMenu1"
   
runat="server"
   
Skin="Outlook"
   
PostBackUrl="CrossPageCS.aspx"
>
  

See Also