For the first idea of running separate queries, the query results will need
to be merged into a single datatable since a gridview or any other databound
control for this matter can bind only to one datasource.
I would suggest creating just one datatable, doesn't matter in a dataset or
not, and populating it with different query results. The queries can be run
with SqlDataReaders.

Signature
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
> Mike,
>
[quoted text clipped - 8 lines]
> HTH
> Kalpesh
Mike - 31 Jan 2008 12:35 GMT
I would I do this using 1 datatable, but with multiple queries?
I could merge all 12 queries into one but each query is using a different
where clause due to that web form has 8 drop downs that can be selected and
passed into each query.
> For the first idea of running separate queries, the query results will
> need to be merged into a single datatable since a gridview or any other
[quoted text clipped - 16 lines]
>> HTH
>> Kalpesh