I have used the panel in my web page. It works fine also but the problem is that when the controls are displayed in the panel The text "panel" is also being displayed.That should not be displayed how to do that.I get the number of dynamic controls in a dropdown list box
The code which I have used is
TextBox txtbox = new TextBox();
Panel1.Controls .Add(txtbox);
The code which I have used is
TextBox txtbox = new TextBox();
Panel1.Controls .Add(txtbox);
Comment