Telerik RadMultiPage is an ASP.NET component designed to manage the content within tabs. Separated from the tabstrip labels, the content can be positioned anywhere on the page.
Telerik RadMultiPage is installed together with Telerik RadTabStrip, the Telerik control for building tabbed interfaces. Both products share the same assembly, RadTabStrip.Net2.dll.
Telerik Telerik RadMultiPage is intended to be used primarily with Telerik RadTabStrip. At the same time, Telerik RadMultiPage is a self-contained component that can be used as a general multipage application.
The screenshot below shows Telerik RadTabStrip together with Telerik RadMultiPage.
To integrate Telerik RadTabStrip with Telerik RadMultiPage, you need to set MultiPageID property of the tabstrip to the ID of the respective multipage instance. To learn more, see Integrate RadMultiPage with Telerik RadTabStrip.
Structure
r.a.d.multipage acts as a container for PageView controls. Each PageView control in turn contains child controls such as buttons and text boxes. You can programmatically show and hide a particular PageView on the sever and client side.
r.a.d.multipage consists of several PageViews used to hold and display information. The structure of a Telerik RadMultiPage looks like:
| |
Copy Code |
|
<rad:RadMultiPage id="RadMultiPage1" runat="server" SelectedIndex="0" Width="400"> <rad:PageView id="Pageview1" runat="server"> Name: John Smith<br /> Birthday: October 20th 1976<br /> Marital Status: Single <br /> </rad:PageView> <rad:PageView id="Pageview2" runat="server"> ... Content of the Pageview2 ... </rad:PageView> <rad:PageView id="Pageview3" runat="server"> ... Content of the Pageview3 ... </rad:PageView> </rad:RadMultiPage> |
Appearance
The visual appearance can be defined using CSS style sheets applied to the multipage structure elements (i.e. the PageViews).
See Also