ListBox / Table?

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Hi,

Is there a chance to show various columns in a ListBox control, something like a ListView in VB6? Or should I use a table web control instead?

Thanks
Mike
 
Don't use a listbox for data layout in columns.

If you need to databind then
If you need to sort on arbitrary columns then
use a datagrid
else
use a datalist
end if
else
use a table
end if
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top