How can I export GridView.DataSource to datatable or dataset?
|
|
|||
|
|
|
http://www.vbforums.com/showthread.php?t=474895
|
||
|
|
|
|
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 datable using (DataTable)Gridview1.Datasource would cause a crashing error in case the datasource is actually a DataSet or even some kind of collection. Supporting Dcoumentation: MSDN Documentation on "as" |
||
|
|
|
|
Assuming your DataSource is of type DataTable, you can just do this:
|
||
|
