我在面板内有一个中继器。
在这个中继器里面我有另一个面板。在某些条件下,我想设置这个panel.visibility = false
。
在后面的代码中,我尝试找到面板OnItemDataBound
并设置可见 = false。但它只会返回Object reference not set to an instance of an object.
。我猜是因为它找不到面板。
这是我的代码:
<asp:Panel ID="Panel1" runat="server">
<asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="repComments_OnDataBound">
<ItemTemplate>
<div>
<asp:Panel runat="server" ID="commentAdminPanel" CssClass="floatRight" >
<img id='deleteComment' class='deleteComment' src='/img/delete1.jpg' />
</asp:Panel>
</div>
</div>
</ItemTemplate>
</asp:Repeater>
</asp:Panel>
这是我背后的代码:
protected void repComments_OnDataBound(Object sender, RepeaterItemEventArgs e)
{
Panel panel = (Panel)Repeater1.FindControl("commentAdminPanel");
panel.Visible = false;
}
我究竟做错了什么?