我正在尝试添加一个 GridView 并在最后一列中添加了一个按钮。它什么也没做,我制作了一个新标签,看看它是否返回任何数据,但它似乎只在最后一行工作。你看到我的代码有什么问题吗?提前致谢!
HTML
                <asp:Button runat="server" Text="Submit" OnClick="ButtonClick8"  />
                 </ItemTemplate>
            </asp:TemplateField> 
        </Columns>
        <FooterStyle BackColor="#FFFFCC" ForeColor="#330099" />
        <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="#FFFFCC" />
        <PagerStyle BackColor="#FFFFCC" ForeColor="#330099" HorizontalAlign="Center" />
        <RowStyle BackColor="White" ForeColor="#330099" />
        <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="#663399" />
        <SortedAscendingCellStyle BackColor="#FEFCEB" />
        <SortedAscendingHeaderStyle BackColor="#AF0101" />
        <SortedDescendingCellStyle BackColor="#F6F0C0" />
        <SortedDescendingHeaderStyle BackColor="#7E0000" />
    </asp:GridView>
C#
    protected void ButtonClick8(object sender, System.EventArgs e)
{
    Button button2 = (Button)sender;
    GridViewRow row2 = (GridViewRow)button2.NamingContainer;
    int i = 0;
    int string1;
    foreach (GridViewRow gvr in GridView2.Rows)
    {
        if (gvr == row2)
        {
            string1 = Convert.ToInt32(gvr.Cells[0].Text);
            Label1.Text = string1.ToString();
        }
        else 
        {
            Label1.Text = "no";
        }
    }
再次谢谢你!