In the demo of RadGrid for ASP.NET AJAX, there is Insert/Update/Delete - automatic operations, so user can do insert/update/delete without writing any code behind. The data source used there is SessionDataSource. In the description, it says this can also be used for AccessDataSource, SqlDataSource or ObjectDataSource.
But I am going to use a generic list like List<MyClass> in memory as my data source. How can I still implement the automatic Insert/Update/Delete functions?
Thanks a lot.
But I am going to use a generic list like List<MyClass> in memory as my data source. How can I still implement the automatic Insert/Update/Delete functions?
Thanks a lot.