I am using Nested GridViews where each row in the gridview has child gridView. I am using RowDataBound Event of Parent GridView, to Bindin
You have to go 4 steps back and get the parent row like this
protected void gvChild_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { GridViewRow gvMasterRow = (GridViewRow)e.Row.Parent.Parent.Parent.Parent; } }