它已经很复杂了,我怀疑我是否可以单独处理它。现在有很多东西从一开始就包含在项目中,我不确定它们是什么以及它们是什么。

我已将 AjaxControlToolkit 添加到项目中,并用于设置类似的脚本管理器:

    <ajaxToolkit:ToolkitScriptManager runat="server"
        EnablePageMethods="true"
        EnablePartialRendering="true"
        LoadScriptsBeforeUI="true"
        AjaxFrameworkMode="Enabled">
        <Scripts>

            <asp:ScriptReference Name="jquery" />
            <asp:ScriptReference Name="bootstrap" />

            <asp:ScriptReference Name="MsAjaxBundle" />
            <asp:ScriptReference Name="respond" />
            <asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
            <asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
            <asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
            <asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
            <asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
            <asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
            <asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
            <asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
            <asp:ScriptReference Name="WebFormsBundle" />


        </Scripts>
    </ajaxToolkit:ToolkitScriptManager>

看起来 ajaxToolkit 已经可以工作了,但大多数情况下我在 Chrome 控制台中看到错误。

但我看到的第一个错误是:



我在 Scripts 文件夹中发现了很多不同的各种脚本,但 AjaxControlToolkit 没有提供,现在我不明白如何解决它?

最佳答案

检查此链接可能会有所帮助:

AjaxControlToolkit version 7.0123 with .NET 4.5

Microsoft JScript runtime error: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts.

关于c# - 如何将 AjaxControlToolkit 添加到 Visual Studio 2013 web 表单模板?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20070987/

10-11 22:14