0

我怎样才能访问rep_DataSimilarToBacthid

我需要绑定 GridView 并调用 GridView RowDataBound 或 InitializeRow

<asp:Repeater ID="rep_UnAssignComps" runat="server">

                 <ItemTemplate>
         <asp:Repeater ID="rep_UnAssignComps" runat="server">

                 <ItemTemplate>
                    <asp:GridView ID="rep_DataSimilarToBacthid" runat="server" Style="text-align: center;
                        width: 375px;" AutoGenerateColumns="false">
                        <Columns>
                            <asp:BoundField HeaderText="Test" DataField="Test" />
                        </Columns>

                    </asp:GridView>
        </ItemTemplate>
    </asp:Repeater>
            </ItemTemplate>
        </asp:Repeater>

我正在使用带有框架版本 2.0 的 VB.Net。谢谢

4

1 回答 1

2

在你的代码后面添加这样的功能:

Protected Sub grid_RowDataBound(sender As Object, e As GridViewRowEventArgs)

End Sub

在您的 GridView 控件中添加 OnRowDataBound="grid_RowDataBound" 以便您获得:

<asp:GridView ID="rep_DataSimilarToBacthid" runat="server" OnRowDataBound="grid_RowDataBound" ...
于 2012-04-11T16:50:18.170 回答