I am working with Aspxgridview with contrxtmenustrip in web application. In aspxgridview there are 5 columns with some row data. Post right click on grid I need to know which row user has clicked and what is the column name without passing the column index manually in code level.
int rowVisibleIndex = int.Parse(hf["VisibleIndex"].ToString());
By doing this I am able to get the row number. In the same way I need the column name which is selected by user at client side.