<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Testing CSS</title>
</head>
<body>
<form runat="server">
Please select a product:
<asp:DropDownList id="productsList"
CssClass="dropdownmenu" runat="server">
<asp:ListItem Text="Shirt" selected="true" />
<asp:ListItem Text="Hat" />
<asp:Listitem Text="Pants" />
<asp:ListItem Text="Socks" />
</asp:DropDownList>
<asp:TextBox id="quantityTextBox" CssClass="textbox"
runat="server" />
<asp:Button id="addToCartButton" CssClass="button"
Text="Add To Cart" runat="server" />
</form>
</body>
</html>
|