Position Web control within Panel on Web Form ... programatically

  • Thread starter Thread starter M-
  • Start date Start date
M

M-

Is it possible to position a Web Form control within a
Panel ... programattically? That is, by adding lines to
the following code:


protected System.Web.UI.WebControls.Panel Panel1;

private void Page_Load(object sender, System.EventArgs e)
{
Panel1.BackColor= System.Drawing.Color.White;
Panel1.Height=95;
Panel1.Width=200;
System.Web.UI.WebControls.DropDownList DDL1 = new
DropDownList();
DDL1.Height=30;
DDL1.Width=120;
Panel1.Controls.Add(TB2);
}

or, some other way?

Thanks.
 
Back
Top