Skip to content

Instantly share code, notes, and snippets.

@mikecole
Created February 17, 2014 01:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikecole/9043303 to your computer and use it in GitHub Desktop.
Save mikecole/9043303 to your computer and use it in GitHub Desktop.
<asp:DropDownList ID="ddlItems" runat="server">
<asp:ListItem Text="<--Select Item-->" Value=""></asp:ListItem>
<asp:ListItem Text="Item 1" Value="1"></asp:ListItem>
<asp:ListItem Text="Item 2" Value="2"></asp:ListItem>
<asp:ListItem Text="Item 3" Value="3"></asp:ListItem>
</asp:DropDownList>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" ControlToValidate="ddlItems" runat="server" ErrorMessage="Please select an item" Text="Please select an item"></asp:RequiredFieldValidator>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment