ComponentOne Tabs for ASP.NET WebForms
In This Topic
    Elements
    In This Topic

    A C1Tabs is essentially a combination of a wizard control and a tab strip. C1Tabs is used to display a collection of pages (represented by the C1TabPage class) one at a time. Navigation for a C1Tabs control is handled by an integrated tabstrip.

    C1Tabs

    Tabstrip

    The C1Tabs tabstrip is used to navigate through the pages of the control. Each tab is associated with one C1TabPage. The tabstrip can be aligned to the top, bottom, left, or right of the control.

    Tab Page

    The tab page of the C1Tabs can hold a variety of elements, such as formatted text, controls, tables, and more. Arbitrary controls can also be added to C1Tabs simply by declaring the server control within the C1TabPage tag. For example, the following markup adds the Button server control inside the first page of the C1Tabs:

    To write code in Source View

    <cc1:C1TabPage ID="C1TabPage01" runat="server">
    <asp:Button ID="Button1" runat="server" Text="Button" />
    </cc1:C1TabPage>
    See Also