Docs on dynamic Loading of ASP.NET User Controls using the LoadControl Method?

  • Thread starter Thread starter wASP
  • Start date Start date
W

wASP

Hello everyone,


I'm wondering if anyone knows of any good documentation
on dynamic Loading of ASP.NET User Controls using the LoadControl Method?
( ... or with any other method in general?)

In particular, I'm looking for some documentation on the functions
for creating and manipulating those controls programmatically
- besides and much like the ones I'm using now:

Button button1 = new Button();
TextBox new_TextBox = new TextBox();

I've Googled on this: [LoadControl method ASP.NET]
- and got back over 3700 links - so I need to narrow things down a bit in that regard.

I'm a newbie to ASP.NET, so it needs to be fairly straightforward.


Thanks In Advance!

- wASP
 
From the lack of responses, I take it that there ARE NO such docs
- nothing coherent nor comprehensive on the matter.

wASP
===================


Hello everyone,


I'm wondering if anyone knows of any good documentation
on dynamic Loading of ASP.NET User Controls using the LoadControl Method?
( ... or with any other method in general?)

In particular, I'm looking for some documentation on the functions
for creating and manipulating those controls programmatically
- besides and much like the ones I'm using now:

Button button1 = new Button();
TextBox new_TextBox = new TextBox();

I've Googled on this: [LoadControl method ASP.NET]
- and got back over 3700 links - so I need to narrow things down a bit in that regard.

I'm a newbie to ASP.NET, so it needs to be fairly straightforward.


Thanks In Advance!

- wASP

- wASP
 
Back
Top