本文介绍了asp.net dropdownlist - 在db值之前添加空行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的页面上,我有一个 DropDownList
,它使用 SqlDataSource
中的数据库值填充(见下面的代码)
On my page I have a DropDownList
which I populate with database values from an SqlDataSource
(see code below).
如何在值之前添加自己的文本或空白行?
How can I add my own text or a blank line before the values?
<asp:DropDownList ID="drpClient" runat="server" Width="200px"
AutoPostBack="True" DataSourceID="dsClients" DataTextField="name"
DataValueField="client_id">
</asp:DropDownList>
<asp:SqlDataSource ID="dsClients" runat="server"
ConnectionString="my_connection_string"
ProviderName="System.Data.SqlClient"
SelectCommand="SELECT [client_id], [name] FROM [clients]">
</asp:SqlDataSource>
谢谢。
你建议使用一个 SqlDataSource
或更好的填充另一种方式?
P.S. Do you recommend using a SqlDataSource
or is it better to populate another way?
推荐答案
您只需添加在DropDownList标记中。来自DataSource的所有值将被追加。
You can simply add a ListItem inside the DropDownList Markup. All the values from the DataSource will be appended after that.
<asp:DropDownList ID="drpClient" runat="server" Width="200px"
AutoPostBack="True" DataSourceID="dsClients" DataTextField="name"
DataValueField="client_id" AppendDataBoundItems="true">
<asp:ListItem>-- pick one --</asp:ListItem>
</asp:DropDownList>
这篇关于asp.net dropdownlist - 在db值之前添加空行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!