Hello,
You can add controls to a page by doing Page.Controls.Add, or to a "container" control of some sort. To create the control, you can create it by doing:
Dim objLabel As New Label
Then you can assign attributes, etc. and add it to the page.
You may benefit best from a book, as this would be a large subject of discussion.
Brian
|