ASP Net Controls ASP.Net Tutorial

The MultiView control supports the following properties ( this is not a complete list):
ActiveViewIndex:     select the View control by index.
Views:               return the list of View controls.
GetActiveView:       get the selected View control.
SetActiveView:       select the active view.
ActiveViewChanged:   Raised when a new View control is selected.
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    protected void Menu1_MenuItemClick(object sender, MenuEventArgs e)
    {
        int index = Int32.Parse(e.Item.Value);
        MultiView1.ActiveViewIndex = index;
    }



    MultiView Tabs


    
    

            id="Menu1"
        Orientation="Horizontal"
        StaticMenuItemStyle-CssClass="tab"
        StaticSelectedStyle-CssClass="selectedTab"
        CssClass="tabs"
        OnMenuItemClick="Menu1_MenuItemClick"
        Runat="server">
        
        
        
        
        

    
    
            id="MultiView1"
        ActiveViewIndex="0"
        Runat="server">
        
            This is the first view
        
        
            This is the second view
        
        
            This is the third view