Skip to content

Instantly share code, notes, and snippets.

@kmlprtsng
Created October 18, 2013 09:52
Show Gist options
  • Save kmlprtsng/7039250 to your computer and use it in GitHub Desktop.
Save kmlprtsng/7039250 to your computer and use it in GitHub Desktop.
Dropdown with All / Select option apended
<asp:DropDownList runat="server" ID="SomeDropDown" AutoPostBack="true"
DataTextField="FirstName" DataValueField="Id" AppendDataBoundItems="true">
<asp:ListItem Text="All" Value="-1" />
</asp:DropDownList>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment