user control

  • Thread starter Thread starter CSharpcoder
  • Start date Start date
C

CSharpcoder

I have several web forms with a usercontrol on them. The user controls has 3
drops downs, I need to get the values of the drop downs and pass them to a
stored procedure which will then populate a grid.

How can I get the selected values from the user controls so I can pass them
values to my data class to call my stored procedure?
 
There's blogs that have documented how to fake passing an array of values to
a stored procedure.
 
Add to the user control 3 public properties, one for each selected value, is
it what are you asking?
 
Back
Top