我正在尝试获取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中的总行数吗?使用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;
   }
}

请注意,此事件将针对父网格 View 中存在的每一行触发,此count会根据每一行而变化。

10-08 07:57