query a dataset

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

Hi,

I have loaded three tables from my sql server database into three seperate
datatables in my asp.net application.

I have defined the relations the same as in the database.

what I would like to do now is directly query the dataset, but I am not sure
how??

Is this possible?? could some body please point me in the right direction.

thank you for your time.

martin.
 
Hi MArtin,

If you want to display a bunch of records on your webpage for example, you
could bind your dataset to a repeater, datalist or even datagrid for display
purposes. You are not limited to these 3...just for example. When you
create your datagrid (for example) you would set the datagrid's datasource
property to be your dataset.

HTH Lerp:)
 
Back
Top