填充下拉列表

发布于 2024-12-07 05:57:14 字数 483 浏览 0 评论 0原文

嗨,我需要填充一个下拉列表。我设计了一个数据源并将其分配给下拉列表。下拉列表已正确填充。但问题是我需要在下拉列表的开头添加一个默认值“默认”(并且该值默认不在数据库中。

我这样做了:

 <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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半城柳色半声笛 2024-12-14 05:57:14

将下拉列表中的 AppendDataBoundItems 属性设置为 true,数据源中的项目将显示在您在标记中添加的任何 ListItems 之后,例如

<asp:DropDownList ID="classInstructor" runat="server" DataSourceID="SqlDataSource3" 
    DataTextField="InstrName" DataValueField="InstrName" AppendDataBoundItems="true">
    <asp:ListItem Value="Default" Text="Default" Selected="True"/>
</asp:DropDownList>

Set the AppendDataBoundItems property to true on the dropdown list and the items from the data source will appear after any ListItems you add in the markup e.g.

<asp:DropDownList ID="classInstructor" runat="server" DataSourceID="SqlDataSource3" 
    DataTextField="InstrName" DataValueField="InstrName" AppendDataBoundItems="true">
    <asp:ListItem Value="Default" Text="Default" Selected="True"/>
</asp:DropDownList>
混吃等死 2024-12-14 05:57:14

如果 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 the DataBind() method.

see here for the examples and more comments on this: Asp.net - Add blank item at top of dropdownlist

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文