Load User Control dynamically in C# and assign the Public properties of that control

1.5k Views Asked by At

I want to load the user controls dynamically on my page. I can load the control dynamically with the help of following code:

UserControl ctrl =(UserControl) Page.LoadControl(ControlPath);
dvUserControls.Controls.Clear();
dvUserControls.Controls.Add(ctrl);

dvUserControls is just a div with runat = "server"

My problem is that I have to assign the values to the public properties of the controls also .I can't register my control to the aspx page.

Please advise.

Thanks Rohit

2

There are 2 best solutions below

2
On

it the type of usercontrol is not available(you say which is your case) you can (and have to) use reflection

0
On

This is how is it working with me:

MyListControl myListControl = (MyListControl)page.LoadControl("~/Controls/MyListControl.ascx");
myListControl.SourceId = 1;
//Further Processing

on top of my page, i have:

using MyProject.UI.Controls;