单击同一行中的按钮时如何访问数据列表中的标签

发布于 2025-01-07 04:27:20 字数 126 浏览 0 评论 0原文

我有一个DataList,每个数据列表都有一个标签按钮,我想在单击按钮时获取标签的文本对于每个数据列表行? 我正在使用vb.net

I have a DataList, and each data list has a label and button, I want to get the text of the label when the button is clicked for each data list row ?
I am using vb.net.

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

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

发布评论

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

评论(1

抱着落日 2025-01-14 04:27:20

我假设您正在处理 DataListItemCommand 事件通过设置Button的CommandName 属性。

 Sub Item_Command(sender As Object, e As DataListCommandEventArgs)Handles DataList1.ItemCommand

    ' What command was triggered?
    If e.CommandName = "YourCommandName" Then

        ' Get the Label in the DataListItem of the clicked button
        Dim lbl = DirectCast(e.Item.FindControl("Label1"), Label)
        Dim labelText = lbl.Text
    End If

 End Sub

I assume that you're handling the DataList's ItemCommand event by setting the Button's CommandName property.

 Sub Item_Command(sender As Object, e As DataListCommandEventArgs)Handles DataList1.ItemCommand

    ' What command was triggered?
    If e.CommandName = "YourCommandName" Then

        ' Get the Label in the DataListItem of the clicked button
        Dim lbl = DirectCast(e.Item.FindControl("Label1"), Label)
        Dim labelText = lbl.Text
    End If

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