adding new rows to datagrid

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

grettings,

i have been searching the web for articles on how to add new rows to
datagrid... most of it does postback. do anyone here know of a good article
which uses javascript to add new rows to a datagrid?

would also appriciate if you could give me some nice articles on how to add
new rows to a datagrid... thanks.
 
If you add rows on the client side, the server won't have any idea about it.
You will need to communicate the new rows to the server in a hidden input
control in your custom format, decrypt it on server-side and re-add the rows
on the server again.

Eliyahu
 
Back
Top