c#后台对控件进行添加
在添加之前进行需求性判断
利用 Controls.Add(Controls)添加控件
比如将一个Label添加到页面
this.Page.Controls.Add(new Label());
html中动态添加控件一般是在js中操作,.net没有试过,你可以试试
还是动态用js拼接字符串 然后append到web页面中,服务端控件最后还是生成html页签,所以尽量少用服务端控件
panel中能换行吗?
楼上的方法是可以的实现的!
Label too = new Label(); too.ID = "Total1"; too.Text = "geovindu"; too.ForeColor = Color.Red; this.Panel.Controls.Add(too); Literal lt = new Literal(); lt.Text = "<br/>"; //控件換行 this.Panel.Controls.Add(lt);