.NET
<asp:DropDownList ID="ddlLang" runat="server" CssClass="ddSmall" AutoPostBack="True"
OnSelectedIndexChanged="ddlLang_SelectedIndexChanged">
</asp:DropDownList>
CSS:
.ddSmall
{
font-size: 8pt;
font-family: Verdana;
background-color: #2D2D2D;
color: White;
border-color: #2D2D2D;
}
|