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
 

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

Back
Top