我可以在下拉列表中有一个值为0的空白字符串吗?

时间:2012-03-29 21:10:30

标签: asp.net drop-down-menu

我的asp.net下拉列表中需要一个listitem,其值为0,文本为空字符串。我在我的代码中将db查询的结果附加到它。如果我有以下标记,它将为值和文本呈现为0:

<asp:DropDownList id="dd1" runat="server" AppendDataBoundItems="true">
   <asp:ListItem Value="0"></asp:ListItem>
</asp:DropDownList>

如果没有在我的代码中创建插入listitem对象,有没有办法让它成为我想要的?

谢谢!

1 个答案:

答案 0 :(得分:5)

设置Text属性,例如

<asp:DropDownList id="dd1" runat="server" AppendDataBoundItems="true">
   <asp:ListItem Value="0" Text="" />
</asp:DropDownList>