RadComboBox for ASP.NET AJAX

RadControls for ASP.NET AJAX

You can have your RadComboBox cause postbacks to a different web page from the one that it resides. To achieve this behavior, simply set the PostBackUrl property to the page that should handle the postback.

CopyASPX
<telerik:radcombobox id="RadComboBox1" runat="server" postbackurl="CrossPageCs.aspx"></telerik:radcombobox>

Once in the second page, you can access the RadComboBox control on the previous page using the Page.PreviousPage property.

For a live example, see Cross Page Postback.