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
 
Back
Top