从数据源填充 DropDownList

发布于 2024-09-28 07:15:21 字数 109 浏览 2 评论 0原文

我有一个 SQL 数据源,它选择表的所有行。我需要使用所有行的某个字段(“百分比”)填充下拉列表,并且当单击一个字段将“值”设置为行“id”字段时。

有一个简单的方法可以做到这一点吗?谢谢

I have an SQL Data Source which selects all rows of a table. I need to populate a dropdownlist with a certain field ('percentage') of all the rows, and when one is clicked to make the 'value' the rows 'id' field.

Is there a simple way of doing this? Thanks

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

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

发布评论

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

评论(1

遇见了你 2024-10-05 07:15:21

您会想要这样:

<asp:DropDownList id="ddl_Items" runat="Server" DataTextField="percentage" 
     DataValueField="id" DataSourceId="sds_Items" />

<asp:SqlDataSource id="sds_Items" ...........other stuff........ />

您无需担心在单击时分配值。只需在首先加载 DropDownList 时执行此操作即可。

You would want this:

<asp:DropDownList id="ddl_Items" runat="Server" DataTextField="percentage" 
     DataValueField="id" DataSourceId="sds_Items" />

<asp:SqlDataSource id="sds_Items" ...........other stuff........ />

You don't need to worry about assigning the value on click. Just do it when you load the DropDownList in the first place.

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