I want to add a row on top of Gridview, meaning that wants to add a row ON gridview as first record. Sample code as follows ` protected void getfinaldetails_Click(object sender, EventArgs e) {
DataSet ResultDS = new DataSet();
// string timespan = TimeSelection.SelectedValue;
string fromdate = txtfromDate.Text;
string todate = txtToDate.Text;
string freepermit = "paid";
Label1.Text = "Paid Permit Amount Details";
Label2.Visible = false;
ResultDS = DLCON.AdminAmount(fromdate, todate, freepermit);
GridAmountView.DataSource = ResultDS;
GridAmountView.DataBind();
}
`