Newbie: dynamically load custom control?

C

Colin Peters

Hi,

I can dynamically load a User Control with

Control c = LoadControl("~/UserControls/LoginCtrl.ascx");
ContentArea.Controls.Add(c);

Is it possible to do the same thing with custom controls?

If I have a dll MyUtils with namespace MyNamespace and a class MyClass,
do I have to instantiate an control in the aspx page HTML in order to
use it?

cheers
 
B

Bruce Barker

you just create one:

Control c = new MyNamespace.MyClass();
ContentArea.Controls.Add(c);

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,904
Latest member
HealthyVisionsCBDPrice

Latest Threads

Top