在ASP.NET Web Forms 4.5中捆绑JQuery

时间:2012-09-17 21:10:20

标签: jquery asp.net visual-studio-2012 webforms bundling-and-minification

我使用Visual Studio 2012和内置模板(在Add - > New Project下)创建一个全新的ASP.NET Web Forms Web应用程序项目。在默认情况下提供的Site.Master页面中,我看到了一些针对JQuery的标记,它包含在下面。

如果给出以下标记,ASP.NET如何确定包含JQuery所需的路径?

<asp:ScriptManager runat="server">
    <Scripts>
        <%--Framework Scripts--%>
        <asp:ScriptReference Name="MsAjaxBundle" />
        <asp:ScriptReference Name="jquery" />
        <asp:ScriptReference Name="jquery.ui.combined" />
        <asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
        <asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
        <asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
        <asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
        <asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
        <asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
        <asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
        <asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
        <asp:ScriptReference Name="WebFormsBundle" />
        <%--Site Scripts--%>
    </Scripts>
</asp:ScriptManager>

我没有看到任何配置文件或代码将jquery解析为“〜/ Scripts / jquery-1.7.1.js”。我看到一个packages.config文件,但它没有明确描述必须以某种方式计算的路径。

有没有人知道如何在运行时解析JQuery的javascript文件的路径?

1 个答案:

答案 0 :(得分:2)

在Microsoft.ScriptManager.WebForms PreAppStartCode中,它具有:

        System.Web.UI.ScriptManager.ScriptResourceMapping.AddDefinition("WebFormsBundle", new ScriptResourceDefinition
        {
            Path = "~/bundles/WebFormsJs",
            CdnPath = "http://ajax.aspnetcdn.com/ajax/4.5/6/WebFormsBundle.js",
            LoadSuccessExpression="window.WebForm_PostBackOptions",
            CdnSupportsSecureConnection = true
        });

这是与脚本引用声明相关的内容:

<asp:ScriptReference Name="WebFormsBundle" />

并且还执行重复数据删除,因为ScriptReference路径与bundle中文件的路径相同,该路径应该在BundleConfig.cs中注册