protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName=="chakan")
{
string docid = GridView1.Rows[int.Parse(e.CommandArgument.ToString())].Cells[0].Text;
}
}
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton LBdel = (LinkButton)e.Row.FindControl("LinkButton1");
LBdel.CommandArgument = e.Row.RowIndex.ToString();
}
}
{
if (e.CommandName=="chakan")
{
string docid = GridView1.Rows[int.Parse(e.CommandArgument.ToString())].Cells[0].Text;
}
}
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton LBdel = (LinkButton)e.Row.FindControl("LinkButton1");
LBdel.CommandArgument = e.Row.RowIndex.ToString();
}
}