Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SQL
how we can see the data in grid view after click insert butoon  after fill the detail at that page

both gridview and form are available at same page
Posted
Updated 7-May-14 20:20pm
v2

you may have already create method to bind data to grid in your page load, something like below
C#
if(!IsPostback(
{
  LoadData();
}

after you insert data in your insert event, call the same method (LoadData();)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900