Removing Items From list Box

A

Amad Uddin

Hi Is there any way I can enable users to remove any item in the list box
which are not required by him/her. If it cannot be done in a list box
control. Can it be done through repeating tables?

My List box is displaying data from SQL Server and based on selection from a
drop down list box.
 
R

RP

I'm not sure about list box, but it can be done using repeating table.

Drag and drop a repeating table and perform data binding.

Add a new button to the repating table row and implement an code
behind event handler.

You can get the selected row from button click event handler
arguments.

Hth,
RP
 
Top