in a table the following are the data are saved
name phone id
celv 9940******** 1
raj 880********* 2
ravi 9840552****** 3
mani 58674******** 4
if i delet the raj (in front end asp.net)
now it need the data like this
name phone id
celv 9940******** 1
ravi 9840552****** 2
mani 58674******** 3

selvi subramanianPosted Jul 4, 2014, 6:21 AM
Khan Abrar AhmedPosted Jul 4, 2014, 6:13 AM
selvi subramanianPosted Jul 4, 2014, 2:35 AM
Khan Abrar AhmedPosted Jul 3, 2014, 1:14 AM
you need to refresh the data again from database once it deleted, because look like you are binding the data from database and delete the row from front end so you need refresh to that grid,
for example:
1. like in row command event you have the delete button after that call the get method to refresh the data.
selvi subramanianPosted Jul 3, 2014, 12:35 AM
name phone id
celv 9940******** 1
raj 880********* 2
ravi 9840552****** 3
mani 58674******** 4
if i delet the raj (in front end asp.net) now it need the data show like this
name phone id
celv 9940******** 1
ravi 9840552****** 2
man i58674******** 3
Khan Abrar AhmedPosted Jun 30, 2014, 2:27 AM
selvi subramanianPosted Jun 30, 2014, 12:49 AM
Khan Abrar AhmedPosted Jun 29, 2014, 2:13 AM
once it deleted from the backend (database) you can refresh the page or bind the grid again to re refresh the data in front end.