Error: ASP.NET Ajax client-side framework failed to load after some updates on host

Error: ASP.NET Ajax client-side framework failed to load after some updates on host

我在 windows host = https://blobloblo/WebForm5.aspx
有一个网站 当 运行 在 FireFox 开发者上 link 并查看控制台日志时, 我会看到这个错误:

Error: ASP.NET Ajax client-side framework failed to

由于此错误,此网站的许多部分无法正常工作。
昨天一切都还好
但是今天他们关闭了主机几个小时并做了一些更新,比如 plesk 的更新。
运行再次连接主机后出现此错误。
我应该告诉他们什么来解决这个问题?



WebForm5 ASPX :

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm5.aspx.cs" Inherits="Virtual_Visa_Cards.WebForm5" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
            <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                <ContentTemplate>
                    <asp:Button ID="Button1" runat="server" Text="Button" Height="26px" OnClick="Button1_Click" />&nbsp;&nbsp;&nbsp;<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
                </ContentTemplate>
            </asp:UpdatePanel>
        </div>
    </form>
</body>
</html>

WebForm5 C# :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Virtual_Visa_Cards
{
    public partial class WebForm5 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            Label1.Text = "This is Ajax Call = CallBack";
        }
    }
}


相关主题:
ASP.NET Ajax client-side framework failed to load. when put the ScriptManager on a blank page
我测试了上层主题中的所有答案,但没有结果。

在 plesk 中,我转到 Web Application Firewall 并将 Web 应用程序防火墙模式设置为 关闭

我花了一天的时间来解决这个问题。