I'm trying to build an ASP.net user control that uses a Repeater to iterate over a number of items in an ObjectDataSource that I need to pass in to the user control. I'm not sure how to pass the object data source in though. Any one know how to do this?
|
|
|
|
|
|
|
You can create a property in the user control and pass it to the repeater.
|
||
|
|
|
|
If you make you control inherit from CompositeDataBoundControl
you can assign the DataSourceID to it.
then in you control you implement
Where the dataSource is data coming from your ObjectDataSource |
|||
|
|
|
Below are the rough steps to do this (untested).
|
|||
|
|
