【问题标题】:text is not allowed between the opening and closing tags update panel开始和结束标签更新面板之间不允许出现文本
【发布时间】:2013-05-09 08:31:33
【问题描述】:

为什么我不确定,为什么我的更新面板收到此警告或错误,

开始和结束标签更新面板之间不允许有文字

这里的标记

<script type="text/javascript">
    function bringPOPup() 
    {     
        $.blockUI({message: $('#anotherUP'), css: { width: '600px' } });
    }
</script>



<div id="anotherUP" style="display: none; cursor: default">
    <asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false">
        <ContentTemplate>
                <asp:DropDownList ID="drop1" runat="server" EnableViewState="true" AutoPostBack="true" OnSelectedIndexChanged="Drop1_SelectedIndexChanged"/>
        </ContentTemplate>
     <Triggers>
        <asp:AsyncPostbackTrigger ControlID="drop1" EventName="SelectedIndexChanged" />
    </Triggers>
    </asp:UpdatePanel>
</div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true">
    <ContentTemplate>
        <input type="button" id="Button3" value="Click me to Bring Pop Up" onclick="bringPOPup()" />
        <br />
    </ContentTemplate>
</asp:UpdatePanel>

有人能告诉我我用谷歌搜索出了什么问题吗?没有任何问题。

【问题讨论】:

  • 请发布整个代码,因为我已将其粘贴到我的页面中,但没有收到您指定的错误。也请检查标签。
  • 请参考我在这篇文章中发布的代码,谢谢您的时间。

标签: c# asp.net webforms updatepanel


【解决方案1】:

此错误表明您不能在 UpdatePanel 中直接包含纯文本 - 唯一可以成为 UpdatePanel 直接子项的是 &lt;Triggers&gt;&lt;ContentTemplate&gt;

这是一个不允许的例子:

<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true">
    You can't put text right here, this will cause an error!
    <ContentTemplate>
        <input type="button" id="Button3" value="Click me to Bring Pop Up" onclick="bringPOPup()" />
        <br />
    </ContentTemplate>
</asp:UpdatePanel>

我在 ContentTemplate 之外添加的文本会导致该错误。

到目前为止,我在您显示的代码中没有看到任何会导致错误的内容,但这是您需要查找的内容。它可能在页面其他地方的代码中。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-06-07
    • 2016-05-24
    • 2016-02-12
    • 1970-01-01
    相关资源
    最近更新 更多