I have a dropdownlist with a disabled initial value "Please select value" and when I click it, it appears again as one of the selections. Is there a way to remove this such that I will only see my items, and not see "Please select value" from the choices of selection?
<asp:DropDownList ID="ddlRole" runat="server" AppendDataBoundItems="true" Width="115">
<asp:ListItem Selected="True" Text="Please select value" Value="" disabled />
</asp:DropDownList>