I want to delete the data from the Grid and when I insert the new data it should be display in grid.This should happen when the page load occurs.I tried this code.
protected void Page_Load(object sender, EventArgs e)
{
Gv1.DeleteRow(6);
}