Theme and skin in DropDownList
DropDownListTheme.aspx
<%@ Page Language="C#" Theme="Red" %>
<!DOCTYPE html>
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>How to use theme and skin in DropDownList</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:Green">DropDownList: Using Theme</h2>
<asp:Label
ID="Label1"
runat="server"
Font-Bold="true"
ForeColor="DarkBlue"
Text="Color List"
>
</asp:Label>
<asp:DropDownList
ID="DropDownList1"
runat="server"
>
<asp:ListItem>DarkGrey</asp:ListItem>
<asp:ListItem>DarkKhaki</asp:ListItem>
<asp:ListItem>DarkSlateGray</asp:ListItem>
<asp:ListItem>DarkTurquoise</asp:ListItem>
<asp:ListItem>DarkSlateBlue</asp:ListItem>
</asp:DropDownList>
</div>
</form>
</body>
</html>
Red.skin
<asp:DropDownList
runat="server"
BackColor="Tomato"
ForeColor="FloralWhite"
Font-Bold="true"
Font-Italic="true"
>
</asp:DropDownList>

