ASP.NET 4.5 + AJAX Control Toolkit 會遇到的問題 ...

摘要:ASP.NET 4.5 + AJAX Control Toolkit 會遇到的問題 ...

最近開始研究Visual Studio 2012 & ASP.NET 4.5

發現了一個問題,在這邊跟大家分享

如果新增ASP.NET Web Form 應用程式 專案,然後去NuGet下載AjaxControlToolkit,會出現以下訊息 ... 

 

第一次我在使用的時候還覺得奇怪,到底是哪邊壞掉了 ...

後來找到了這篇文章,解決了這個問題

http://stephenwalther.com/archive/2012/09/20/september-2012-release-of-the-ajax-control-toolkit.aspx

按照文章內的操作步驟開啟Site.Master 對ScriptManager元件做以下修正

1.將asp:ScriptManager取代為ajaxToolkit:ToolkitScriptManager

2.移除<asp:ScriptReference Name="MsAjaxBundle" />標籤

3.移除所有Assembly="System.Web"標籤

改完之後如下

<ajaxToolkit:ToolkitScriptManager runat="server">
        <Scripts>
            <%--Framework Scripts--%>
            <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" />
            <%--Site Scripts--%>

        </Scripts>
    </ajaxToolkit:ToolkitScriptManager>

即可正常運作:)