27 lines
No EOL
1 KiB
Text
27 lines
No EOL
1 KiB
Text
<%--
|
|
Default skin template. The following skins are provided as examples only.
|
|
|
|
1. Named control skin. The SkinId should be uniquely defined because
|
|
duplicate SkinId's per control type are not allowed in the same theme.
|
|
|
|
<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
|
|
<AlternatingRowStyle BackColor="Blue" />
|
|
</asp:GridView>
|
|
|
|
2. Default skin. The SkinId is not defined. Only one default
|
|
control skin per control type is allowed in the same theme.
|
|
|
|
<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
|
|
--%>
|
|
|
|
<asp:DataList runat="server" SkinID="HorizontalTabs" RepeatDirection="Horizontal">
|
|
<ItemTemplate>
|
|
<asp:LinkButton ID="btnSelectTab" runat="server" CommandName="select"></asp:LinkButton>
|
|
</ItemTemplate>
|
|
<SelectedItemTemplate>
|
|
<b><i><asp:Label ID="lblTabName" runat="server"></asp:Label></i></b>
|
|
</SelectedItemTemplate>
|
|
</asp:DataList>
|
|
|
|
<asp:BulletedList runat="server" SkinID="BackupSetSummary" BulletStyle="Disc"
|
|
Style="margin-top: 0px; padding-top: 0px;" /> |