up vote 4 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

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

5 Answers

up vote 4 down vote accepted

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|improve this answer
2  
-1 bcoz. DataTable dt = (DataTable)GridView1.DataSource; will give you null. – Amit Ranjan Dec 8 '11 at 19:21
looks like this may have been marked as the right answer just randomly – I__ Dec 9 '11 at 3:32
feedback

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

myGridView.DataSource as DataTable
link|improve this answer
Thanks you are ok... – Penguen Apr 24 '09 at 13:25
2  
Then how about you accept the answer?! – Michael Sep 3 '10 at 8:10
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.

    DataTable dt = new DataTable();

    // add the columns to the datatable            
    if (GridView1.HeaderRow != null)
    {

        for (int i = 0; i < GridView1.HeaderRow.Cells.Count; i++)
        {
            dt.Columns.Add(GridView1.HeaderRow.Cells[i].Text);
        }
    }

    //  add each of the data rows to the table
    foreach (GridViewRow row in GridView1.Rows)
    {
        DataRow dr;
        dr = dt.NewRow();

        for (int i = 0; i < row.Cells.Count; i++)
        {
            dr[i] = row.Cells[i].Text.Replace("&nbsp;","");
        }
        dt.Rows.Add(dr);
    }

    //  add the footer row to the table
    if (GridView1.FooterRow != null)
    {
        DataRow dr;
        dr = dt.NewRow();

        for (int i = 0; i < GridView1.FooterRow.Cells.Count; i++)
        {
            dr[i] = GridView1.FooterRow.Cells[i].Text.Replace("&nbsp;","");
        }
        dt.Rows.Add(dr);
    }
link|improve this answer
feedback

Personally I would go with:

DataTable 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 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"

link|improve this answer
feedback

My friend, You Should convert first DataSourse en Binding Sourse, look example

BindingSource bs = (BindingSource )dgrid.DataSource;//Se convierte el DataSource 
DataTable tCxC = (DataTable ) bs.DataSource;

With the datas of tCxC you can do Anything

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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