我的asp.net下拉列表中需要一个listitem,其值为0,文本为空字符串。我在我的代码中将db查询的结果附加到它。如果我有以下标记,它将为值和文本呈现为0:
<asp:DropDownList id="dd1" runat="server" AppendDataBoundItems="true">
<asp:ListItem Value="0"></asp:ListItem>
</asp:DropDownList>
如果没有在我的代码中创建插入listitem对象,有没有办法让它成为我想要的?
谢谢!
答案 0 :(得分:5)
设置Text
属性,例如
<asp:DropDownList id="dd1" runat="server" AppendDataBoundItems="true">
<asp:ListItem Value="0" Text="" />
</asp:DropDownList>