Another Question - Listing an Unknown number of records
Hi,
I am retrieving data from an access database.
I want to be able to list and display records from a table
the number of records retrieved will be determined by the criteria the user enters
i don't wanna declare controls (labels or something???) as I don't know how many I will need
Is there any way I can do the above, links to examples that I can rip?
I have tried searching, but I don't know the name of the thing I am looking for so I haven't had much luck!!
Thanks
Mitch
Re: Another Question - Listing an Unknown number of records
Data repeaters: Repeater, DataList, DataView
Show case for Repeater & DataList
Re: Another Question - Listing an Unknown number of records
Gridview - which can be bound to a datatable without having columns specified in advance?
Re: Another Question - Listing an Unknown number of records
cheers mate, only just got back on
instead of an unknown number of columns, I'm hoping it can be done for an unknown number of rows...?
Data repeaters seemed too indepth when i was tryna read up
had a quick scan for gridview, and it seems spot on so i wanna test this out first
thanks for your help :)