0

我一直在尝试让 AjaxControlToolkit(从 NuGet 下载)版本 7.0607 用于使用没有运气的母版页的 Web 表单。运行 DotNet 4.5 MasterPage 上有 ToolkitScriptManager,但它不会传递给子页面。

我可以创建一个独立的 aspx 页面,在页面上放置一个 scriptmanager 并且控件工作得很好,所以我认为缺少一个设置。

进行这项工作的程序是什么?

母版页脚本块是这样的:

<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
        <Scripts>
            <asp:ScriptReference Assembly="AjaxControlToolkit" Name="ExtenderBase.BaseScripts.js" />
            <asp:ScriptReference Assembly="AjaxControlToolkit" Name="Common.Common.js" />
            <asp:ScriptReference Name="jquery" />
            <asp:ScriptReference Name="jquery.ui.combined" />
            <asp:ScriptReference Name="WebForms.js" Path="~/Scripts/WebForms/WebForms.js" />
            <asp:ScriptReference Name="WebUIValidation.js" Path="~/Scripts/WebForms/WebUIValidation.js" />
            <asp:ScriptReference Name="MenuStandards.js" Path="~/Scripts/WebForms/MenuStandards.js" />
            <asp:ScriptReference Name="GridView.js" Path="~/Scripts/WebForms/GridView.js" />
            <asp:ScriptReference Name="DetailsView.js" Path="~/Scripts/WebForms/DetailsView.js" />
            <asp:ScriptReference Name="TreeView.js" Path="~/Scripts/WebForms/TreeView.js" />
            <asp:ScriptReference Name="WebParts.js" Path="~/Scripts/WebForms/WebParts.js" />
            <asp:ScriptReference Name="Focus.js" Path="~/Scripts/WebForms/Focus.js" />
            <asp:ScriptReference Name="WebFormsBundle" />
        </Scripts>
    </ajaxToolkit:ToolkitScriptManager>
4

2 回答 2

0

没有错误,只是来自另一个论坛的糟糕建议。以下几行是罪魁祸首 - 任何一个都搞砸了:

<asp:ScriptReference Assembly="AjaxControlToolkit" Name="ExtenderBase.BaseScripts.js" />
<asp:ScriptReference Assembly="AjaxControlToolkit" Name="Common.Common.js" />
于 2013-07-16T21:53:19.543 回答
0

用工具包脚本管理器替换 Microsoft 脚本管理器对我有用,他们正在工作。

<asp:ScriptManager ID="ScriptManager1" runat="server">

<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></ajaxToolkit:ToolkitScriptManager> 
于 2014-02-05T16:37:53.617 回答