我希望能在aspx页面上动态创建几个button,text,label等
是创建在aspx页面上,不要成Panel1这些之类的子控件
Button n=new Button();
n.Text="test";
n.ID="s";
this.Controls.Add(n);
这样在页面上建时会出错.