The Easiest Way to Save and Share Code Snippets on the web

Your snipt has been migrated to #newsnipt successfully.

Tab layout

asp

posted: Aug, 9th 2010 | jump to bottom

<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Dashboard.Master" CodeBehind="CheckIn.aspx.vb" Inherits="WebApp.CheckIn" %>
<%@ Register Assembly="RallyWebControls" Namespace="RallyWebControls" TagPrefix="RallyWebControls" %>
 
<asp:Content ID="Content1" ContentPlaceHolderID="DashboardContent" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
        <Scripts>
            <asp:ScriptReference Assembly="RallyWebControls" Name="RallyWebControls.RallyTabsLayout.js" />
        </Scripts>
    </asp:ScriptManager>
 
    <RallyWebControls:RallyTabsLayout ID="Tabs" runat="server">
        <RallyWebControls:RallyHelpTab ID="HelpTab" runat="server">
            Help content
        </RallyWebControls:RallyHelpTab>
        <RallyWebControls:RallyTab ID="Tab1" TabText="My Surveys" runat="server">
            My surveys content
        </RallyWebControls:RallyTab>
        <RallyWebControls:RallyTab ID="Tab2" TabText="Direct Entry" runat="server">
            Direct entry content
        </RallyWebControls:RallyTab>
    </RallyWebControls:RallyTabsLayout>
 
</asp:Content>
33 views