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
 

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

Similar Threads


Back
Top