RadTabStrip for ASP.NET

RadMultiPage Send comments on this topic.
See Also
Already using the control > Changes and backward compatibility > RadMultiPage

Glossary Item Box

 

 

Please note that Telerik RadTabStrip v3.0 is not backward compatible with previous versions.

Assembly

Telerik RadMultiPage is now in RadTabStrip.dll. Remove the following from the ASPX/ASCX:

Copy Code
<%@ Register TagPrefix="radMP" Namespace="Telerik.WebControls"
Assembly="RadMultiPage" %>
        

TagPrefix

The tag prefix has been changed from radMP to radTS.

2.x Copy Code
<radMP:RadMultiPage ID="RadMultiPage1" Runat="server" SelectedIndex="0">
   
<radMP:PageView id="Page1" runat="server">
   
</radMP:PageView>
   
<radMP:PageView id="Page2" runat="server">
   
</radMP:PageView>
</
radMP:RadMultiPage>
3.x Copy Code
<rad:RadMultiPage ID="RadMultiPage1" Runat="server" SelectedIndex="0">
     
<rad:PageView id="Page1" runat="server">
     
</rad:PageView>
     
<rad:PageView id="Page2" runat="server">
     
</rad:PageView>
</
rad:RadMultiPage>

Functionality

Telerik RadMultiPage is no longer naming container (INamingContainer interface marker is removed). The controls placed inside will no longer be prefixed with the RadMultiPage ID.

See Also