从数据源填充 DropDownList
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您会想要这样:
您无需担心在单击时分配值。只需在首先加载 DropDownList 时执行此操作即可。
You would want this:
You don't need to worry about assigning the value on click. Just do it when you load the DropDownList in the first place.