ASP.NET:在UpdatePanel中重复LinkBut​​tons时“需要对象”

时间:2009-06-18 22:25:28

标签: asp.net javascript updatepanel repeater

我有一个UpdatePanel,它有一个Repeater重复LinkBut​​tons。当我单击一个LinkBut​​ton,该页面进行部分回发,然后我收到一个javascript错误:“需要对象”。我尝试调试javascript,但无法获得调用堆栈。如果我删除UpdatePanel,LinkBut​​tons会执行完整的回发,它们会从页面中消失。如何让这个UpdatePanel工作?

<ajax:UpdatePanel ID="wrapperUpdatePanel" runat="server" UpdateMode="Always">
    <ContentTemplate>
        <asp:Repeater ID="endpointRepeater" runat="server" OnItemDataBound="EndpointDataBound">
            <HeaderTemplate>
                <div class="sideTabs">
                    <ul>
            </HeaderTemplate>
            <ItemTemplate>
                <li>
                    <asp:LinkButton ID="endpointLink" runat="server" OnClick="EndpointSelected" />
                </li>
            </ItemTemplate>
            <FooterTemplate>
                </ul>
                </div>
            </FooterTemplate>
        </asp:Repeater>
    </ContentTemplate>
</ajax:UpdatePanel>

绑定代码:

protected void Page_Load(object sender, EventArgs e)
{
    if (!this.IsPostBack)
    {
        this.SelectedEndpoint = Factory.Get<IEndpoint>(Enums.EndPoints.Marketing);
    }
    IEndpointCollection col = EndpointCollection.GetActivelySubscribingEndpointsForPart(this.Item);

    if (this.Item.IsGdsnItem)
        col.Add(Factory.Get<IEndpoint>(Enums.EndPoints.Gdsn));

    if (col.Count > 0)
        col.Insert(0, Factory.Get<IEndpoint>(Enums.EndPoints.Marketing));

    this.endpointRepeater.DataSource = col;
    this.endpointRepeater.DataBind();

    if (this.endpointRepeater.Items.Count > 0)
    {
        LinkButton lb = this.endpointRepeater.Items[0].FindControl("endpointLink") as LinkButton;
        this.EndpointSelected(lb, new EventArgs());
    }
}

感谢, 标记

1 个答案:

答案 0 :(得分:0)

这可能不是您的主要问题,但是当在Repeater中包含需要事件的对象时,您不应该使用该控件的本机事件。相反,您应该使用Repeater的OnCommand事件。

如果我猜测,你的问题是由转发器在PostBacks上没有维持其DataBound状态引起的。 Linkbutton从视图中消失,因为它没有绑定到每个PostBack上的页面,所以当响应被发送回客户端时,它没有任何约束。

听起来好像UpdatePanel期望从AJAX响应中返回相同(或类似)的标记,就像页面上已有的那样,因此没有为转发器返回任何内容会导致问题。

尝试使用OnInit()方法将转发器绑定到页面/控件。这应该允许在每个PostBack上加载转发器的ViewState。