creating a runtime web component

  • Thread starter Thread starter Bruno Palozzi
  • Start date Start date
B

Bruno Palozzi

Hi,

does anyone out the know how I can create a runtime web
component in asp.net.

For example, I am trying to dynamically create a text
input field in a vb.net aspx page, and embed it into a
table.

any help would be greatly appreciated.
 
web component or control
See Reflection, Reflection Emit

Or
System.Web.UI.WebControls.TextBox myNewTextBox = new TextBox();

or

Dim myNewTextBox As System.Web.UI.WebControls.TextBox = New TextBox
 
Back
Top