如何在 DataList 中单击按钮时检索 datalist 中的值

发布于 2024-08-21 15:04:54 字数 166 浏览 8 评论 0原文

我们有一个数据列表,其中有一些数据,每个项目都有一个按钮控件。我想要实现的是,单击按钮时,将获取与单击按钮控件的 Datalist 特定行相关的数据。如何做到这一点?问题是如何将按钮控件附加到该特定行中相关的值?请注意,我使用 ArrayList 作为数据源,因为我通过 pageDataSource 类启用填充...

We have a Datalist in which we have some data, with every Item we have a button control. What I want to achieve is that on the button click, the data related to that particular row of Datalist is fetched whose Button control is clicked. How to accomplish this? The problem is how to attach the button control with values related in that particular row? Note that I am using ArrayList as the Datasource since I am enabling padding via pageDataSource class...

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

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

发布评论

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

评论(1

友欢 2024-08-28 15:04:54

Button 实现 OnDataBinding 事件。然后在 Button 中将 CommandArgument 设置为可标识您单击的行的内容。然后为DataList 实现OnItemCommand 事件。您将能够读取所单击的 ButtonCommandArgument,然后执行您需要的任何操作。

Implement the OnDataBinding event for the Button. Then in the Button set the CommandArgument to something that will identify the row you are clicking. Then implement the OnItemCommand event for the DataList. You will be able to read the CommandArgument for the Button that was clicked and then perform whatever action you need.

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