填充下拉列表
嗨,我需要填充一个下拉列表。我设计了一个数据源并将其分配给下拉列表。下拉列表已正确填充。但问题是我需要在下拉列表的开头添加一个默认值“默认”(并且该值默认不在数据库中。
我这样做了:
<asp:DropDownList ID="classInstructor" runat="server" DataSourceID="SqlDataSource3"
DataTextField="InstrName" DataValueField="InstrName">
<asp:ListItem Value="Default" Text="Default" Selected="True"></asp:ListItem>
</asp:DropDownList>
但默认值没有显示在下拉列表中。可能,我的做法是错误的,你能让我知道处理这个问题的最佳方法吗?
Hi i need to populate a dropdownlist. I designed a datasource and assigned it to dropdownlist. The dropdown populated correctly. But the problem is that i need to add a default value say "default" at the starting of the dropdownlist( and this value default is not in the database.
I did this :
<asp:DropDownList ID="classInstructor" runat="server" DataSourceID="SqlDataSource3"
DataTextField="InstrName" DataValueField="InstrName">
<asp:ListItem Value="Default" Text="Default" Selected="True"></asp:ListItem>
</asp:DropDownList>
But default doesn't show up on dropdown. Probably, the way i did was wrong. Can u let me know the best way to handle this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将下拉列表中的
AppendDataBoundItems
属性设置为true
,数据源中的项目将显示在您在标记中添加的任何 ListItems 之后,例如Set the
AppendDataBoundItems
property totrue
on the dropdown list and the items from the data source will appear after any ListItems you add in the markup e.g.如果 DropDownList 在运行时绑定到数据源,则无法使用此方法,设计时标记中的默认项将在绑定中被冲走。
您需要做的是在调用
DataBind()
方法之后执行Insert
操作。请参阅此处的示例和更多评论: Asp.net - 在下拉列表顶部添加空白项
you cannot use this approach if the DropDownList is bound to a datasource at runtime this Default item you have in the markup at design time will be washed away in the binding.
what you need to do is an
Insert
after the call to theDataBind()
method.see here for the examples and more comments on this: Asp.net - Add blank item at top of dropdownlist