repeater control with selection

  • Thread starter Thread starter Robert Smith
  • Start date Start date
R

Robert Smith

Hi,
I wish to create a repeater control in c#.net that allows for the
selection of rows, any idea how this can be done.

Regards

Robert
 
Hi,
     I wish to create a repeater control in c#.net that allows for the
selection of rows, any idea how this can be done.

Regards

Robert

why you want to use a repeater and not a grid for example?

what you mean with selection, you can use a checkbox column and when
checked you change the Css of the row, this is an indication of
"selection"
 
Hi Ignacio,
I wish to use a repeater because it is lighter than a gridview
and my supervisor recommended it.
 
A Gridview isn't always "lighter" or heavier that a Repeater; it depends
what you have in the control, how many rows and columns, and how many child
controls. Besides Gridview already has all the stuff you need, and since
your supervisor is asking you to reinvent the wheel by using a Repeater,
there's a pretty good chance he / /she is a real moron.
Peter
 
Back
Top