我怎样才能获得gridview行数

时间:2015-10-02 18:45:10

标签: c# asp.net gridview

我正在尝试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
        }
 }

1 个答案:

答案 0 :(得分:6)

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

gvProducts.Rows.Count

<强>更新

要查找嵌套网格视图的行数,可以使用父网格视图的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将根据每一行进行更改。