listview in asp.net

Bath_RUH

Newcomer
Joined
Mar 3, 2004
Messages
1
I am porting a VB6 windows app to the web and am having problems with the listview control or lack of it in.net. I use the listview in windows to display a list of records which can then single or multi selected, the listview is then scanned and any selected items are used in the next step of the application. My problem is I cannot re-create this functionality in .net. I am quite new to .net so any advice is much appreciated.

Thanks for your help.
 
You may want to investigate the DataList control, it allows you a lot of control over how data is display - including what controls to use. Creating a lDataList that contained a checkbox would be a fairly simple matter.
 
Back
Top