我目前正在使用ajax CompositeScript
的{{1}}功能来捆绑程序集中引用的ajax .js文件:
ToolkitScriptManager
我想知道是否也可以捆绑生成的CSS?我正在使用
为ajax <ajaxToolkit:ToolkitScriptManager ID="manScript" LoadScriptsBeforeUI="false" EnablePartialRendering="false" runat="server" EnableViewState="false" ScriptMode="Release" EnableCdn="true">
<CompositeScript ScriptMode="Release" Path="/web/js/ajax/ajaxbundle.min.js">
<Scripts>
<asp:ScriptReference Name="WebForms.js" Assembly="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<asp:ScriptReference Name="MicrosoftAjax.js" />
<asp:ScriptReference Name="MicrosoftAjaxWebForms.js" />
<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" />
</Scripts>
</CompositeScript>
</ajaxToolkit:ToolkitScriptManager>
扩展程序控件加载CSS <link />
。
答案 0 :(得分:2)
正如我所看到的,您正在使用AJAX Control Toolkit的v15.1之前的版本。 它缺乏这种能力。
您可以在Upgrading from v7.x and below文章后升级项目。在升级过程中记下How to Use Bundling and CDN文章。