If you need to highlight the last INSERTED record in gridview,
1. You need to maintain a 'CreatedDate' column in your table.
2. On Rowbound(), you can use if..else condition as,
If(createdDate is latest date)
{
//do the highlight operation
gridviewCustomer.Rows[lastRowIndex].BackColor = System.Drawing.Color.Red;
}