最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
动态加载服务器控件(整理)
时间:2022-07-02 11:39:34 编辑:袖梨 来源:一聚教程网
代码示例1:
dlist = New System.Web.UI.WebControls.DropDownList()
dlist.Items.Clear()
dlist.ID = "d" & rs2.Fields("zdm").Value
Do While Not rs3.EOF
dlist.Items.Add(rs3.Fields(0).Value)
rs3.MoveNext()
Loop
td2.Controls.Add(dlist)
代码示例2:
TextBox textbox = new TextBox();
textbox.ID = showReader.GetValue(0).ToString();
this.Controls.Add(textbox);
代码示例3:
// Override to create repeated items.
protected override void CreateChildControls() {
object o = ViewState["NumItems"];
if (o != null) {
// Clear any existing child controls.
Controls.Clear();
int numItems = (int)o;
for (int i=0; i < numItems; i++) {
// Create an item.
RepeaterItem item = new RepeaterItem(i, null);
// Initialize the item from the template.
ItemTemplate.InstantiateIn(item);
// Add the item to the ControlCollection.
Controls.Add(item);
}
}
}
备注
新控件添加到序号索引数组的末尾。控件可以是任何 ASP.NET 服务器控件、您创建的自定义服务器控件或文本控件的实例。
若要将控件添加到集合中的特定索引位置,请使用 AddAt 方法。
dlist = New System.Web.UI.WebControls.DropDownList()
dlist.Items.Clear()
dlist.ID = "d" & rs2.Fields("zdm").Value
Do While Not rs3.EOF
dlist.Items.Add(rs3.Fields(0).Value)
rs3.MoveNext()
Loop
td2.Controls.Add(dlist)
代码示例2:
TextBox textbox = new TextBox();
textbox.ID = showReader.GetValue(0).ToString();
this.Controls.Add(textbox);
代码示例3:
// Override to create repeated items.
protected override void CreateChildControls() {
object o = ViewState["NumItems"];
if (o != null) {
// Clear any existing child controls.
Controls.Clear();
int numItems = (int)o;
for (int i=0; i < numItems; i++) {
// Create an item.
RepeaterItem item = new RepeaterItem(i, null);
// Initialize the item from the template.
ItemTemplate.InstantiateIn(item);
// Add the item to the ControlCollection.
Controls.Add(item);
}
}
}
备注
新控件添加到序号索引数组的末尾。控件可以是任何 ASP.NET 服务器控件、您创建的自定义服务器控件或文本控件的实例。
若要将控件添加到集合中的特定索引位置,请使用 AddAt 方法。
相关文章
- 《无限暖暖》天星之羽获得位置介绍 12-20
- 《流放之路2》重铸台解锁方法介绍 12-20
- 《无限暖暖》瞄准那个亮亮的成就怎么做 12-20
- 《无限暖暖》魔气怪终结者完成方法 12-20
- 《无限暖暖》曙光毛团获得位置介绍 12-20
- 《无限暖暖》日光果获得位置介绍 12-20