1

我在 asp.net 中有一个用户控件,我只想在运行时在一个单独的表格中的单个网页中多次添加用户控件。这个怎么做?

谢谢

4

3 回答 3

4

使用 Page.LoadControl 方法动态创建用户控件实例,并将其添加到父控件,如:

var uc = Page.LoadControl("~/uc.ascx");
this.Panel1.Controls.Add(uc);

每次页面发回时,您都必须重新创建 UC,仅供参考。

于 2011-06-28T13:22:41.583 回答
1
Dim tbl As New Table
Dim tr1 As New TableRow
tbl.Rows.Add(tr1)
Dim td1 As New TableCell
tr1.Cells.Add(td1)
Dim ctl As New CustomControl
ctl.Text = "Toto"
td1.Controls.Add(ctl)

这是一些旧代码,可以在 .net 1.1 中使用,但应该仍然可以使用。

于 2011-06-28T13:25:01.433 回答
1

为了可以引用每个创建的控件,您必须为每个控件分配一个唯一的 id:

  Dim tempUserControl As UserControl
    tempUserControl = Page.LoadControl("~/UserControl1.ascx")
    tempUserControl.ID = "uniquename1"
    testPanel.Controls.Add(tempUserControl)
    tempUserControl = Page.LoadControl("~/UserControl1.ascx")
    tempUserControl.ID = "uniquename2"
    testPanel.Controls.Add(tempUserControl)

然后您可以在以后的回发中访问该控件:

    Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim tempUserControl As WebUserControl1
    tempUserControl = testPanel.FindControl("uniquename1")
End Sub
于 2011-06-28T15:27:37.143 回答