Using TabSeparator Controls with a TabStrip Control (VB.net) : Tab « Components « ASP.Net






Using TabSeparator Controls with a TabStrip Control (VB.net)

<%@ Page Language=VB Debug=true %>
<%@ Import Namespace="Microsoft.Web.UI.WebControls" %>
<%@ Register TagPrefix="IEControls" 
    Namespace="Microsoft.Web.UI.WebControls" 
    Assembly ="Microsoft.Web.UI.WebControls"
%>
<HTML>
<HEAD>
<TITLE>Using TabSeparator Controls with a TabStrip Control</TITLE>
</HEAD>
<BODY LEFTMARGIN="40">
<form runat="server">
<IEControls:tabstrip 
    id="MyTabStrip"
    runat="server"
    forecolor="DarkBlue"
    backcolor="DarkBlue"
    >
    <IEControls:tab 
        id="Tab1"
        runat="server"
        text="&nbspThe first button&nbsp"
        tooltip="Click Me!!!"
    />
    <IEControls:TabSeparator />
    <IEControls:tab 
        id="Tab2"
        runat="server"
        Text="&nbspThe second button&nbsp" 
    />
    <IEControls:TabSeparator />
    <IEControls:tab 
        id="Tab3"
        runat="server"
        Text="&nbspThe third button&nbsp" 
    />
</IEControls:tabstrip>
<BR><BR>
<asp:label
    id="lblMessage"
    runat=server
/>
</form>
</BODY>
</HTML>
           
       








Related examples in the same category

1.Use asp:Menu and asp:MultiView to create tab control (C#)
2.Tab control Demo (C#)
3.tab control (VB.net)
4.Creating a Basic TabStrip Control (VB.net)
5.Using Images on a TabStrip Control (VB.net)
6.Using a TabStrip Control with a MultiPage Control (VB.net)
7.Setting the Orientation of a TabStrip Control (VB.net)
8.TabStrip Control: tab clicked event (VB.net)