Hi,
I'm trying to evaluate the TabStrip control and try to match the functionality we currently use in our product using Microsoft.Web.UI.WebControls
So far functionality wise was accomplished by going through the help manual and the look and feel is where I'm unable to figure out how to match what we have.
My Tab consists of 3 images left middle and right and base on the Status I have CSS to set the appropriate images (selected, hoover, default)
I have looked at the skin and it is way beyond my expertise in CSS I was wondering if there is a way to accomplish the same thing with local style sheet with out using the skin.
following is a sample declaration of a Microsoft
Sincerely,
Fadi
I'm trying to evaluate the TabStrip control and try to match the functionality we currently use in our product using Microsoft.Web.UI.WebControls
So far functionality wise was accomplished by going through the help manual and the look and feel is where I'm unable to figure out how to match what we have.
My Tab consists of 3 images left middle and right and base on the Status I have CSS to set the appropriate images (selected, hoover, default)
I have looked at the skin and it is way beyond my expertise in CSS I was wondering if there is a way to accomplish the same thing with local style sheet with out using the skin.
following is a sample declaration of a Microsoft
<iewc:tabstrip id="MessageSheet_Sheet" TargetID="MessageSheet" |
TabDefaultStyle ="border-width:0 px; |
border-color: #EFEFEF; |
border-style: Groove; |
background-image:url(images/TabMiddle-Normal.gif); |
background-color:#CACACA; |
color:#000000; |
font-family:verdana; |
font-size:11 px; |
text-decoration: None; |
border-left-style:none; |
border-right-style:none; |
border-bottom-style:none; |
border-top-style:none; |
cursor:pointer;" |
TabHoverStyle =" background-image:url(images/TabMiddle-Normal.gif); |
background-color:#CACACA; |
color:#000000; |
font-family:verdana; |
font-size:11 px; |
text-decoration: Underline; |
cursor:pointer;" |
TabSelectedStyle ="border-left-style:none; |
border-right-style:none; |
border-bottom-style:none; |
border-top-style:Groove; |
background-image:url(images/TabMiddle-Selected.gif); |
background-color:#DACEB5; |
color:#000000; |
font-family:verdana; |
font-size:11 px;text-decoration: None;" |
runat="Server" |
CssClass="MultiPage" |
tabindex="-1" |
> |
<iewc:TabSeparator DefaultImageUrl="images/TabBegin-Normal.gif" SelectedImageUrl="images/TabBegin-Selected.gif" /> |
<iewc:Tab Text=" Incoming " ID="IncomingMessages_Tab"></iewc:Tab> |
<iewc:TabSeparator DefaultImageUrl="images/TabEnd-Normal.gif" SelectedImageUrl="images/TabEnd-Selected.gif" /> |
<iewc:TabSeparator DefaultImageUrl="images/TabBegin-Normal.gif" SelectedImageUrl="images/TabBegin-Selected.gif" /> |
<iewc:Tab Text=" Outgoing " ID="OutgoingMessages_Tab"></iewc:Tab> |
<iewc:TabSeparator DefaultImageUrl="images/TabEnd-Normal.gif" SelectedImageUrl="images/TabEnd-Selected.gif" /> |
</iewc:tabstrip> |
Sincerely,
Fadi