User1163516801 posted
Please try following code snippet:
protected void GridView1_RowDataBound(Object sender, GridViewRowEventArgs e){
if (e.Row.RowType != DataControlRowType.DataRow || e.Row.DataItemIndex<1) return;
var thisRow = e.Row;
for(int i = 0; i < e.Row.Cells.Count; i++)
{
int index = e.Row.DataItemIndex;
int offset = 1;
while (index > 0)
{
var upRow = AuthorsGridView.Rows[e.Row.DataItemIndex - offset];
if (thisRow.Cells[i].Text == upRow.Cells[i].Text)
{
thisRow.Cells[i].Text = "";
break;
}
index--;
offset++;
}
}
}
<audio controls="controls" style="display: none;"></audio>