我怎么能得到gridview行计数

本文关键字:gridview 怎么能 | 更新日期: 2023-09-27 18:15:39

我正在尝试获得gvProducts行计数。

我已经尝试了下面的代码,但它没有给出足够的结果。

 protected void gvProducts_RowCommand(object sender, GridViewCommandEventArgs e)
   {
        string commandName = e.CommandName.ToString().Trim();
        GridViewRow row = (GridViewRow)(((LinkButton)e.CommandSource).NamingContainer);
        if (row.Controls.Count == 1)
        {
            //my code
        }
 }

我怎么能得到gridview行计数

您想要Gridview中的总行数吗?使用Count属性:

gvProducts.Rows.Count

更新:

要查找嵌套gridview的行数,可以使用父gridview的RowDataBound事件:-

protected void gvProductsParent_RowCommand(object sender, GridViewCommandEventArgs e)
{
   if (e.Row.RowType == DataControlRowType.DataRow)
   {
        GridView gvProducts = (GridView)e.Row.FindControl("gvProducts ");
        int count = gvProducts.Rows.Count;
   }
}

请注意,此事件将为父网格视图中出现的每一行触发,count将根据每一行更改。