I have the following markup that doesn't work correctly.
I have the 2nd item selected but it still sets the 1st item as selected.
Why is that?
Code:
<asp:DropdownList ID="ddlActive" runat="server" >
<asp:ListItem Value="">[All]</asp:ListItem>
<asp:ListItem Value="1" Selected="True">Yes</asp:ListItem>
<asp:ListItem Value="0" >No</asp:ListItem>
</asp:DropdownList>
Thanks,
Tom