我有一个非常奇怪的问题。我有一个UserControl里面有一些控件。我想在之后的另一个回发中引用这些控件。但是当我尝试获取它们时,我的控件的Controls
属性返回null。
我正在研究vs2008。
以下是示例代码:
public partial class MyUserControl : System.Web.UI.UserControl, INamingContainer
{
protected void Page_Load(object sender, EventArgs e)
{
foreach (Control control in this.Controls)
{
Response.Write(control.ClientID);
}
}
private void MyTable()
{
Table table = new Table();
TableRow row = new TableRow();
TableCell cell = new TableCell();
CheckBox check = new CheckBox();
check.ID = "theId";
check.Text = "My Check";
check.AutoPostBack = true;
cell.Controls.Add(check);
row.Cells.Add(cell);
check = new CheckBox();
check.ID = "theOther";
check.AutoPostBack = true;
check.Text = "My Other Check";
cell = new TableCell();
cell.Controls.Add(check);
row.Cells.Add(cell);
table.Rows.Add(row);
this.Controls.Add(table);
}
protected override void Render(HtmlTextWriter writer)
{
MyTable();
base.Render(writer);
}
}
和Default.aspx页面类似:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.cs" Inherits="Tester.Default" %>
<%@ Register TagPrefix="uc1" TagName="MyControl" Src="~/MyUserControl.ascx" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Unbenannte Seite</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<uc1:MyControl ID="MyControlInstance" runat="server" />
</div>
</form>
</body>
</html>
我不知道我是否在ASP.NET生命周期的某些部分丢失了。但这种情况让我发疯。任何帮助都会非常感激。
答案 0 :(得分:4)
在MyTable
或CreateChildControls
中创建您的子级控件(OnInit
):
protected override void CreateChildControls()
{
MyTable();
base.CreateChildControls();
}
或者
protected override void OnInit(object sender, EventArgs e)
{
MyTable();
base.OnInit(e);
}
您不应/不能在Render
之后Page_Load
创建控件。请参阅ASP.Net页面生命周期here。
答案 1 :(得分:0)
我认为这是因为Render
事件发生在Page_Load
之后,因此当您尝试迭代控件集时,它尚未设置。最常见的解决方案是覆盖CreateChildControls
以获得适当的时间。