hello friend i need to insert my text box into webpage using asp.net in c# language
giving the codin for sql database and which tools are used in webpage and pls say the changes in properities of text boxes.

Add a control dynamically,

TextBox tx=new TextBox();
  tx.Text="value_here";
  form1.Controls.Add(tx);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.