0

我有一个转发器,我试图在页面加载后加载它并偶然发现 PreRender 事件。我已经设置好了所有东西,但是没有显示中继器的内容——奇怪的是,当我检查 html 时,代码就在那里,只是没有在浏览器中显示。

    <asp:updatepanel id="panel1" runat="server" updatemode="Conditional" onprerender="upUpdatePanel_PreRender">
<contenttemplate>
<asp:repeater runat="server" id="mainContentRptr" onitemdatabound="bindDepts">
<headertemplate>
<div id="products-tabs-content" class="row tab-content">
    </headertemplate>
    <itemtemplate>
    <div class="tab-pane" id='<%# eval("dept_id") %>
        '> <asp:repeater runat="server" id="prodRepeater" onitemcommand="itemToCart">
        <headertemplate>
        .... </headertemplate>
        <itemtemplate>
        .... <asp:repeater runat="server" id="condRptr">
        <headertemplate>
        .... </headertemplate>
        <itemtemplate>
        .... </itemtemplate>
        <footertemplate></footertemplate>
        </asp:repeater>
        </itemtemplate>
        <footertemplate>
    </div>
    </footertemplate>
    </asp:repeater>
</div>
<!-- End .tab-pane -->
</itemtemplate>
<footertemplate>
</footertemplate>
</asp:repeater>
</contenttemplate>
</asp:updatepanel>

正如你可以看到一些嵌套的中继器......我也有我的 UpdateProgress 控件

<asp:UpdateProgress id="updateProgress" runat="server" AssociatedUpdatePanelID="panel1">
                                        <ProgressTemplate>
                                            <div style="position: relative; text-align: center; height: 100%; width: 100%; background-color: white; opacity: 0.7;margin:0 auto">
                                                <asp:Image ID="imgUpdateProgress" runat="server" ImageUrl="images/loader.GIF" AlternateText="Loading ..." ToolTip="Loading ..." style="padding: 10px; position: relative; top: 45%;margin: 0 auto" />
                                                <br/>
                                                <span style="font-size: 16pt;font-weight: bold">Bulding your menu</span>
                                                <br/>
                                                <span>Please wait</span>
                                            </div>
                                        </ProgressTemplate>
                                    </asp:UpdateProgress>

然后以下触发延迟加载

<script language="javascript" type="text/javascript">
                                        function pageLoad(sender, e) {
                                            if (!e.get_isPartialLoad()) {
                                                __doPostBack('<%= panel1.ClientID %>', 'aaaa');
                                            }
                                        }
                                    </script>

和服务器端...

protected void upUpdatePanel_PreRender(object sender, EventArgs e)
        {
            if (Request["__EVENTTARGET"] == panel1.ClientID &&
                Request.Form["__EVENTARGUMENT"] == "aaaa")
            {
                populateRepeaters(); //This has databind for each repeater
            }
        }

这在没有预渲染的情况下工作,但加载速度会因数据等而异,所以我希望在页面加载后加载它。

任何帮助将不胜感激!:)

4

1 回答 1

0

一个中继器坐在更新面板之外,它控制着上面所有内容的可见性。它在预渲染事件中填充但未显示。我已将它移到面板内,现在一切正常

于 2014-05-15T15:36:37.017 回答