vote up 2 vote down star

How can I export GridView.DataSource to datatable or dataset?

flag

30% accept rate
what is the type of the object pointed to by GridView.DataSource? – Mitch Wheat Apr 24 at 13:18

3 Answers

vote up 3 vote down check

http://www.vbforums.com/showthread.php?t=474895

  //If DataSource of GridView1 is a DataTable
  DataTable dt = (DataTable)GridView1.DataSource;

  //If DataSource of GridView1 is a DataView
  DataView dv = (DataView)GridView1.DataSource;
link|flag
vote up 0 vote down

Personally I would go with:

DateTable tbl = Gridview1.DataSource as DataTable;

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"

link|flag
vote up 0 vote down

Assuming your DataSource is of type DataTable, you can just do this:

myGridView.DataSource as DataTable
link|flag
Thanks you are ok... – ykaratoprak Apr 24 at 13:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.