AjaxControlToolkit.CommonToolkitScripts 错误

发布于 2024-10-20 03:59:49 字数 1387 浏览 3 评论 0原文

我在我的 asp.net 应用程序中收到以下代码

 <aspext:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
      <Scripts>
           <asp:ScriptReference Name="AjaxControlToolkit.Common.Common.js" Assembly="AjaxControlToolkit" />
           <asp:ScriptReference Name="AjaxControlToolkit.ExtenderBase.BaseScripts.js" Assembly="AjaxControlToolkit" />
      </Scripts>
 </aspext:ToolkitScriptManager>
 <asp:Panel ID="Panel1" runat="server" />

 <script type="text/javascript" language="javascript">
      function getPosition() {
           //alert( $common.getLocation($get("<%=Panel1.ClientID %>")).x);
           var commonObj = new AjaxControlToolkit._CommonToolkitScripts();
           $common.setBounds($get("<%=Panel1.ClientID %>"),
           {
                x : 100,
                y : 200,
                width : 200,
                height : 100
           }
      }
 </script>

,但收到此错误:

The assembly 'AjaxControlToolkit, Version=4.1.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' does not contain a Web resource that has the name 'AjaxControlToolkit.Common.Common.js'. Make sure that the resource name is spelled correctly. Make sure that the application references the correct version of an ASP.NET AJAX Framework assembly

如何修复它?

I got following code in my asp.net application

 <aspext:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
      <Scripts>
           <asp:ScriptReference Name="AjaxControlToolkit.Common.Common.js" Assembly="AjaxControlToolkit" />
           <asp:ScriptReference Name="AjaxControlToolkit.ExtenderBase.BaseScripts.js" Assembly="AjaxControlToolkit" />
      </Scripts>
 </aspext:ToolkitScriptManager>
 <asp:Panel ID="Panel1" runat="server" />

 <script type="text/javascript" language="javascript">
      function getPosition() {
           //alert( $common.getLocation($get("<%=Panel1.ClientID %>")).x);
           var commonObj = new AjaxControlToolkit._CommonToolkitScripts();
           $common.setBounds($get("<%=Panel1.ClientID %>"),
           {
                x : 100,
                y : 200,
                width : 200,
                height : 100
           }
      }
 </script>

but I am getting this error:

The assembly 'AjaxControlToolkit, Version=4.1.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' does not contain a Web resource that has the name 'AjaxControlToolkit.Common.Common.js'. Make sure that the resource name is spelled correctly. Make sure that the application references the correct version of an ASP.NET AJAX Framework assembly

how to fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假扮的天使 2024-10-27 03:59:49

请尝试使用此代码,使用 ScriptManager 而不是 ToolkitScriptManager

<asp:ScriptManager ID="ScriptManager1" runat="server">
            <Scripts>
                <asp:ScriptReference Name="AjaxControlToolkit.Common.Common.js" Assembly="AjaxControlToolkit" />
                <asp:ScriptReference Name="AjaxControlToolkit.ExtenderBase.BaseScripts.js" Assembly="AjaxControlToolkit" />
            </Scripts>
</asp:ScriptManager>

参考 asp.net 论坛

Please try using this code, use ScriptManager instead of ToolkitScriptManager

<asp:ScriptManager ID="ScriptManager1" runat="server">
            <Scripts>
                <asp:ScriptReference Name="AjaxControlToolkit.Common.Common.js" Assembly="AjaxControlToolkit" />
                <asp:ScriptReference Name="AjaxControlToolkit.ExtenderBase.BaseScripts.js" Assembly="AjaxControlToolkit" />
            </Scripts>
</asp:ScriptManager>

In reference to asp.net forum

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文