Gridview Row index(On click link button):
protected void lkbVideo_Click(object sender, EventArgs e)
{
int index = (((LinkButton)sender).Parent.Parent as GridViewRow).RowIndex;
string strFilePath = GridView1.Rows[index].Cells[2].Text;
}
Gridview Row index(On click Image button):
protected void ImgbuttonVideo_Click(object sender, EventArgs e)
{
int index = (((ImageButton)sender).Parent.Parent as GridViewRow).RowIndex;
string strFilePath = GridView1.Rows[index].Cells[2].Text;
}
1 comment:
customizing the GridView in C#.NET
Post a Comment