I want to add a new blank row to the gridview after binding as seen in the pic
If you are using dataset to bind in a Grid, you can add the row after you fill in the sql data adapter:
adapter.Fill(ds); ds.Tables(0).Rows.Add();