Hi folks,
I have a problem in creating a Tab Control using IE Controls.I am really not sure whats going wrong?????
I have included Microsoft.Web.UI.WebControls.dll as a reference for the same and also in teh bin directory of my application
In short I have downloaded the IE controls and have included the sources for the same in webctrl_client/1_0 in my project.
The issue being before I run the code and see the tab control in the Design mode it looks fine,the moment I run it it shows only the text value as assigned to it .Even if I change the orientation to horizontal or vertical it remains always horizontal.
Please do let me know what can be the solution for the same.
My Html code for the same looks as follows
<%@ Register TagPrefix="IECONTROLS" Namespace="Microsoft.Web.UI.WebControls" Assembly="Microsoft.Web.UI.WebControls" %>
<%@ import namespace="Microsoft.Web.UI.WebControls"%>
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="Webform5.aspx.vb" Inherits="WebApplication6.Webform5"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Webform5</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<LINK href="Styles.css" type="text/css" rel="stylesheet">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<IECONTROLS:TABSTRIP id="myTabStrip" runat="server" Orientation="Horizontal" TabDefaultStyle="background-color:#000000;font-family:verdana;font-weight:bold;font-size:8pt;color:#33cc66;width:79;height:21;text-align:center"
TabHoverStyle="background-color:#6633ff" TabSelectedStyle="background-color:#ffffff;color:#ff0099">
<IECONTROLS:Tab Text="Tab 1"></IECONTROLS:Tab>
<IECONTROLS:TabSeparator></IECONTROLS:TabSeparator>
<IECONTROLS:Tab Text="Tab 2"></IECONTROLS:Tab>
<IECONTROLS:TabSeparator DefaultStyle="height:100%;"></IECONTROLS:TabSeparator>
</IECONTROLS:TABSTRIP>
</form>
</body>
</HTML>
Tons of Thanks in advance!!!!!!!!!
regards,
juhi