Mega Code Archive

 
Categories / ASP.Net / Components
 

Setting the Orientation of 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" %> </SCRIPT> <HTML> <HEAD> <TITLE>Setting the Orientation of a TabStrip Control</TITLE> </HEAD> <BODY LEFTMARGIN="40"> <form runat="server"> <IEControls:TabStrip      id="MyTabStrip"     runat="server"     orientation="Horizontal"     > </IEControls:TabStrip> </form> </BODY> </HTML>