//another
way to find control
GridViewRow row
= (GridViewRow)gvfaculty.Rows[e.RowIndex];
DropDownList
ddDepartment = (DropDownList)gvfaculty.Rows[e.RowIndex].Cells[2].FindControl("dddepartment");
//Bulk
Update all record
foreach (GridViewRow
row in gvfaculty.Rows)
{
Label stid = (Label)row.FindControl("lblstaffid");
CheckBox
dele = (CheckBox)row.FindControl("cbfaculty");
//lblidfac.Text = stid;
if (dele.Checked)
{
----------do-------------
}
}
//Paging
concept
// gvfaculty.PageIndex
= e.NewPageIndex;
No comments:
Post a Comment