我正在尝试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
}
}
答案 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
将根据每一行进行更改。