如果我使用DropDownList:
<asp:DropDownList ID="DropDownListSubContractors" runat="server" DataTextField="Company_Name" DataValueField="id"> </asp:DropDownList>
我使用/设置哪个属性允许我在下拉列表中使用’— Select —‘作为初始选项,而不是列表中的第一个值.
解决方法
您可以使用
<asp:DropDownList ID="DropDownListSubContractors" runat="server" AppendDataBoundItems="true" DataTextField="Company_Name" DataValueField="id"> <asp:ListItem Text="---Select---" Value="0" /> </asp:DropDownList>
DropDownListSubContractors.Items.Add(new ListItem("---Select---","0"));