Asp.net 模式弹出扩展程序在asp:content内部不工作

Asp.net 模式弹出扩展程序在asp:content内部不工作,asp.net,ajax,modalpopupextender,Asp.net,Ajax,Modalpopupextender,我有一个模式弹出扩展内asp:内容页。直到昨天,天气一直很好。我不知道我做了什么改变来打破它。如果有人能看一下并为我指出正确的方向,我将不胜感激 <asp:Content ID="Content5" ContentPlaceHolderID="sectioncontent" Runat="Server"> <asp:Button ID="Button5" runat="server" Text="Show" /> <ajaxToolkit:ModalPopupE

我有一个模式弹出扩展内asp:内容页。直到昨天,天气一直很好。我不知道我做了什么改变来打破它。如果有人能看一下并为我指出正确的方向,我将不胜感激

<asp:Content ID="Content5" ContentPlaceHolderID="sectioncontent" Runat="Server">
 <asp:Button ID="Button5" runat="server" Text="Show" />
 <ajaxToolkit:ModalPopupExtender ID="ModalPopupExtender1" runat="server" TargetControlID="Button5" PopupControlID="Panel1" CancelControlID="Button1" >
                        </ajaxToolkit:ModalPopupExtender>
<asp:Panel ID="Panel1" runat="server" Height="65px"  >
    <p>
       The following records will be deleted from this Cluster</p>

 Comments:  <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> <asp:Button ID="Button3" runat="server" 
            Text="Submit" onclick="Button3_Click" />
   <asp:Button ID="Button1" runat="server" 
            Text="Cancel" onclick="Button1_Click" />
</asp:Panel>


将从此群集中删除以下记录

评论:

此外,当我单击“显示”按钮时,页面正在加载

我无法统计使用ajax控件工具包时出现类似问题的次数。我最终决定它不值得这么重和痛苦,于是我搬到了jquery,在那里我知道发生了什么。@BrettWeber lol你就在这里,我讨厌.net ajax。我对Calandarextender也有问题,在工作了几个月后,它突然消失了。我正在寻找如何修复它(lol..aspx现在有时看起来对jquery进行了彻底的修改。这是我选择限制使用aspx和.net技术的原因之一。大多数情况下,它是不需要的,而且更容易自己或其他地方实现。