sharepoint 2013应用程序页添UpdatePanel控件运行出错

sharepoint 2013应用程序页加UpdatePanel控件运行出错
在应用程序页加入局部刷的控件,运行出错。
<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
<%--<asp:Button ID="btnQuery" runat="server"  Text="Button" OnClick="btnQuery_Click1" />--%>
    <asp:ScriptManager ID="ScriptManager1" runat="server">
         </asp:ScriptManager>
 
         <asp:UpdatePanel ID="UpdatePanel1" runat="server">
              <ContentTemplate>
                   <%= DateTime.Now %>
                   <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click1" />
              </ContentTemplate>
         </asp:UpdatePanel>
         
         <asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
              <ContentTemplate>
                   <%= DateTime.Now %>
              </ContentTemplate>
         </asp:UpdatePanel>


</asp:Content>
sharepoint 2013应用程序页添UpdatePanel控件运行出错
------解决方案--------------------
把真实错误发上来
参考
------解决方案--------------------
2013 最好别这么用,使用 APP方式最好,
,你先按照 FoxDave的方法 把正式的错误抛出来,看看是什么?

------解决方案--------------------
斑竹说的对,先把错误抛出来,才好说解决
其实局部刷新ajax就可以了,为嘛非要这个呢;
可以谈谈需求,看看有没更好的办法~~