Only one instance of a ScriptManager can be added to the page.

一般出现在一个页面用了多个用户控件,而每个用户控件中都用到了ScriptManager,最好的办法是控件中不要加上

        <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">
    </asp:ScriptManager>

而在需要用到控件的地方统一加上这段即可。

原文地址:https://www.cnblogs.com/autumn/p/3441241.html