G
Guest
In my Aspx page I have a form view and Grid view. There is a Edit Button in
EditItemTemplate.When I edit a record in form view it should update that
record in Grid view also. so, I did
protected void UpdateButton_Click(object sender, ImageClickEventArgs e)
{
GridView1.dataBind();
}
But It doesn't work.
EditItemTemplate.When I edit a record in form view it should update that
record in Grid view also. so, I did
protected void UpdateButton_Click(object sender, ImageClickEventArgs e)
{
GridView1.dataBind();
}
But It doesn't work.