我的母版页中有这个 ToolkitScriptManager:
<asp:ToolkitScriptManager runat="server" EnableScriptGlobalization="false" ID="scrptManager"
LoadScriptsBeforeUI="false" ScriptMode="Release" EnableCdn="true">
</asp:ToolkitScriptManager>
注意ScriptMode="Release"
我compilation debug="false"
的 web.config
但是,当脚本下载到客户端时,我会得到未缩小的 javascript。ToolkitScriptManager 从以下位置下载脚本:
http://ajax.aspnetcdn.com/ajax/4.0/1/WebUIValidation.js
http://ajax.aspnetcdn.com/ajax/4.0/1/WebForms.js
如何修改我的 ToolkitScriptManager 以下载这些脚本的缩小版本?