Hi Stan Sainte-Rose,
in the page also you need to declare the user control with the same id
"First" which u have given in the html designer and then in the page's load
directly acces the property and assign the value.
//this line goes in the page element's declarations
Protected First As yourUserControl
// This line goes in the Page_Load
First.Color = yourvaluetobeassignedtocontrol
Regards.
Ashish M Bhonkiya
"Stan Sainte-Rose" <> wrote in message
news:...
> Hi,
>
> I have a User Control using parameters.
> Into my aspx page I define my parameter values like :
> <My:MC ID="First" Name="Test" Color="red" RunAt="Server"></My:MC>
>
> I would like to know how can I change the Color value into my .aspx.vb in
> the page_load section
> Thanks
>
> Stan
>
>
|