为什么不确定,为什么我的更新面板收到此警告或错误,
开始和结束标签更新面板之间不允许出现文本
Here;s 标记
<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>
有人可以告诉我什么是错的,因为我用谷歌搜索它并没有出现任何错误。