Many to many

  • Thread starter Thread starter Marcos Galaviz
  • Start date Start date
M

Marcos Galaviz

Hi i need a many to many select, for example i need a control to select many
clients and after that to select all the details for that clients, but i
dont know how to do it. ¿can you suggest me a control to do that and how to
make that?

Thanks
 
Hi i need a many to many select, for example i need a control to select many
clients and after that to select all the details for that clients, but i
dont know how to do it. ¿can you suggest me a control to do that and how to
make that?

Thanks

What about two DropDownLists connected on SelectedIndexChanged() event?
 
Marcos said:
Hi i need a many to many select, for example i need a control to select many
clients and after that to select all the details for that clients, but i
dont know how to do it. ¿can you suggest me a control to do that and how to
make that?

Is it really a many to many relation? Can a specific detail item belong
to more than one client?

Otherwise you have a one to many relation, where a client can have more
than one detail items, but each detail item belongs only to a single client.
 
Back
Top