How can I export GridView.DataSource to datatable or dataset?
feedback
|
|
http://www.vbforums.com/showthread.php?t=474895
| |||||||
feedback
|
|
Assuming your DataSource is of type DataTable, you can just do this:
| |||||||
feedback
|
|
Ambu, I was having the same issue as you, and this is the code I used to figure it out. Although, I don't use the footer row section for my purposes, I did include it in this code.
| |||
|
feedback
|
|
Personally I would go with:
This would allow you to test for null as this results in either DataTable object or null. Casting it as a DataTable using (DataTable)Gridview1.DataSource would cause a crashing error in case the DataSource is actually a DataSet or even some kind of collection. Supporting Documentation: MSDN Documentation on "as" | ||||
|
feedback
|
|
My friend, You Should convert first DataSourse en Binding Sourse, look example
With the datas of tCxC you can do Anything | ||||
|
feedback
|