user controls with parameters

  • Thread starter Thread starter tvkarthick
  • Start date Start date
T

tvkarthick

Hi,

As I am dynamically loading a user control in a web form (.aspx), I am
wondering if I can pass one or more parameter(s) to the user control
and use after loading it.

The reason is, because that I load the user control based on certain
conditions using Dataset, I don't want to make another call to the
Dataset, when the user control loads up; moreover, I can't load the
user control without the needed parameters such as reference id etc.
Please help.

Any example is much appreciated. Thanks.

Karthick
 
Yes, you can make public methods and properties in your user control that
can be called by the page.
 
Back
Top