I wanted to get Grid Data Item in asp.net grid.In the similar procedure already i did in telerik like this,
GridDataItem dataItem = (GridDataItem)e.Item; <-- this is Telerik Grid
I want the equivelent of the asp.net Grid
I need to do it for the below code,
protected void gvTestRes_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "pdf")
{
//GridDataItem dataItem = (GridDataItem)e.Item;
}
}