Example:
ControlContainerPanel is a empty Panel at the bottom of your webform.
TextBox myNewTextBox = new TextBox();
myNewTextBox.Text = "Default.Text";
ControlContainerPanel.Controls.Add(myNewTextBox);
You can add controls to a large number of objects like Page, TabelCells,
Panels and so on. With that in mind you can position them. Another way
that might work is to add some stylesheet information using the
myNewTextBox.Style.Add("LEFT", "160px");
myNewTextBox.Style.Add("TOP", "100px");
myNewTextBox.Style.Add("POSITION", "absolute");
Cheers,
//Rutger
http://www.RutgerSmit.com