How to Add Number Rows to a grid view dynamically using c# asp.net
+1
A:
Add new "rows" to the datasource of the grid. If your datasource is a DataTable, then add a new DataRow to the DataTable. If your datasource is a collection of objects, then add a new object to that collection.
Don't forget to rebind the grid once you have updated the datasource.
slugster
2009-11-25 08:21:56