SELECT A GRIDVIEW CELL IN ASP

1

How could I select only one gridview cell in asp.

if (e.Row.RowType == DataControlRowType.DataRow)
{
     e.Row.Attributes.Add("onMouseOver", "this.style.cursor = 'pointer' ");
     e.Row.Attributes.Add("onclick", Page.ClientScript.GetPostBackEventReference(gv_bus, "select$"+e.Row.RowIndex.ToString()));
}

I found this code, just select the whole row. I would like to know the column and the row.

    
asked by yeraldo 01.12.2018 в 02:05
source

0 answers