单击按钮从 Datalist 获取数据键值和标签文本?
如何获取datalist中存在的Datakey和lable的值?
我有一个图像按钮和链接按钮,点击它们我试图获取,但我无法做到。 我不想使用 Item_Command 事件。
怎么办?
谢谢。
how to get the value of Datakey and lable which is present inside datalist?
i have a image button and linkbutton on click of them i am trying to get but i am unable to do.
i don't want to use Item_Command event.
How to do?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想在单击
ImageButton/LinkButton
时获取Data Key
值,可以将DataKey值设置为CommandArgument
属性您的控件,然后在 Click 处理程序中您可以从CommandArgument
属性获取值。链接按钮的情况也是如此。
If you want to Get the
Data Key
value on the Click of theImageButton/LinkButton
, you can set the DataKey value to theCommandArgument
property of your control and then in the Click handler you can get the value from theCommandArgument
property.Same case for linkbutton as well.
在按钮单击事件中,您可以执行以下操作来获取 DataKey 和 Label(假设它与按钮位于同一控件集合中):
Inside the button click event, you can do the following to get the DataKey and the Label (assuming it's in the same control collection as the button):