Creating a Basic TabStrip Control (VB.net) : Tab « Components « ASP.Net






Creating a Basic 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>Creating a Basic TabStrip Control</TITLE>
</HEAD>
<BODY LEFTMARGIN="40">
<form runat="server">
<IEControls:TabStrip 
    id="MyTabStrip"
    runat="server"
    forecolor="DarkBlue"
    backcolor="DarkBlue"
    width="20%"
    >
</IEControls:TabStrip>
</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.Using Images on a TabStrip Control (VB.net)
5.Using a TabStrip Control with a MultiPage Control (VB.net)
6.Setting the Orientation of a TabStrip Control (VB.net)
7.TabStrip Control: tab clicked event (VB.net)
8.Using TabSeparator Controls with a TabStrip Control (VB.net)