views:

23

answers:

1

Hi Everybody, I have bounded Gridview through Wizard. It's working fine. but i want that if i add new data it should be visible in the gridview. But gridview not refreshing. I know i can perform this programmatically . but i want to do it in this case also.

Any help will be appreciated. thanks

+1  A: 

in the action method of the Save button of your add from data, add this

dataGridView.DataBind();
Flakron Bytyqi
Thanks for your reply. I'll try this.
Mohan Sharma