2

我需要获取设置为回发到另一个页面的以下链接按钮的文本:

<ItemTemplate>
     <asp:LinkButton ID="LinkButton1" runat="server" Text='<%# Bind("computername") %>' PostBackUrl="~/assetdetails.aspx" CommandName="Select">LinkButton</asp:LinkButton>
</ItemTemplate>

我在接收页面加载事件中尝试了很多东西,但这就是我最终得到的:

Dim GV As GridView = TryCast(PreviousPage.Master.FindControl("content").FindControl("GridView2"), GridView)
Dim LB As LinkButton = TryCast(GV.SelectedRow.Cells(0).FindControl("LinkButton1"), LinkButton)
lblAsset.Text = LB.Text

显然它不起作用(返回空白,不为空),否则我不会发表这篇文章。:) 请帮忙!

4

1 回答 1

1

你做错了。

这里 GridView 位于内容页面(使用母版页)内,因此访问GridView内容页面中的当前内容:

If (Not (Me.Page.PreviousPage) Is Nothing) Then
    Dim ContentPlaceHolder1 As Control =
                  Me.Page.PreviousPage.Master.FindControl("ContentPlaceHolder1")
    Dim GV As GridView =
                  CType(ContentPlaceHolder1.FindControl("GridView1"), GridView)

    Dim LB As LinkButton =
            TryCast(GV.SelectedRow.Cells(0).FindControl("LinkButton1"), LinkButton)
    lblAsset.Text = LB.Text
End If

GridView 和其他内容实际上存在于ContentPlaceHolder控件中。

于 2013-09-25T06:20:07.823 回答