如何使用下拉列表填充/输入数据?

发布于 2024-07-26 19:39:46 字数 326 浏览 6 评论 0原文

这是我现有的代码:

 <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
            DataSourceID="dsEmployees" DataTextField="Last_First" 
            DataValueField="EmpNum" 
            onselectedindexchanged="DropDownList1_SelectedIndexChanged">
 </asp:DropDownList>

Here's my existing code:

 <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
            DataSourceID="dsEmployees" DataTextField="Last_First" 
            DataValueField="EmpNum" 
            onselectedindexchanged="DropDownList1_SelectedIndexChanged">
 </asp:DropDownList>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

原来是傀儡 2024-08-02 19:39:46

DropDownList 最终在 HTML 中呈现为

DropDownLists end up being rendered as <select> tags in HTML. These do not allow for data entry of new values. If you're looking for something similar to a ComboBox (a textbox and a listbox combined into the same control) then you'll need to find a third-party javascript implementation that is acceptable to you; there is no control which provides that functionality in HTML or the .net framework.

棒棒糖 2024-08-02 19:39:46

尤尼塔,你需要更多活动部件。 例如,您需要一个要绑定的数据源。

查看 ASP.NET 网站上的数据访问教程:

http://www. asp.net/learn/data-access/

Yonita, you need some more moving parts. You need a datasource to bind to, for instance.

Have a look at the Data Access tutorials on the ASP.NET website:

http://www.asp.net/learn/data-access/

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