我有一种情况,我在页面上的两个地方使用了一些标记,其中一个在转发器中。中继器中的那个没有初始化它的子控件;他们保持为空。
默认.aspx:
<%@ Page Title="Home Page" Language="C#" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="nestedcontroltest._Default" %>
<%@ Register TagPrefix="a" Namespace="nestedcontroltest" Assembly="nestedcontroltest" %>
<html>
<head>
<title>test</title>
</head>
<body>
<asp:Repeater runat="server" ID="rptLetters" OnItemDataBound="rptLetters_ItemDataBound">
<ItemTemplate>
<a:MyControl runat="server" ID="ctrlMyControl"/>
</ItemTemplate>
</asp:Repeater>
</body>
</html>
默认.aspx.cs:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
rptLetters.DataSource = new[] { "a", "b", "c" };
rptLetters.DataBind();
}
public void rptLetters_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
var ctrlMyControl = (MyControl)e.Item.FindControl("ctrlMyControl");
ctrlMyControl.Text = e.Item.DataItem.ToString();
}
}
MyControl.ascx:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MyControl.ascx.cs" Inherits="nestedcontroltest.MyControl" %>
<asp:Panel runat="server" ID="pnlContent">
<asp:Literal runat="server" ID="ltlText"/>
</asp:Panel>
MyControl.ascx.cs:
public partial class MyControl : UserControl
{
public string Text { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
ltlText.Text = Text;
}
}
当我尝试加载它时,我得到“对象引用未设置为对象的实例”。- 显然 ltlText 为空。
如何让我的 UserControl 正确初始化?