6

我使用 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 文件的路径?

4

1 回答 1

4

在 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 路径与应该在 BundleConfig.cs 中注册的包内文件的路径相同

于 2012-09-17T22:09:58.457 回答