Question

Is there a way to view data that is returned from db by looking at DataSource or DataSourceView object in codebehind? I'm trying to view DataSourceView in debug but I don't see the data returned.

Was it helpful?

Solution

DataView dv = (DataView) YourDataSourceObject.Select(DataSourceSelectArguments.Empty);
for (int i = 0; i < dv.Table.Rows.Count; i++)
{
    string c = dv.Table.Rows[i]["c"].ToString();
}

OTHER TIPS

Use your datasource to fill a datatable or dataset and you can loop through the records and columns, but if you are looking for something which is going to give you a point-blank representation of the sql results, your best option would be binding it to a datatable.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top