aspnet EnableCDN功能配置

时间:2013-05-15 10:00:39

标签: c# .net

我正在尝试实现ScriptManager EnableCdn功能。到目前为止,经过一些研究,我得到了这段代码。

在我的Global.asax文件中

 void Application_Start(object sender, EventArgs e)
    {
        // Code that runs on application startup
        // map a simple name to a path
        ScriptManager.ScriptResourceMapping.AddDefinition("jQuery", new ScriptResourceDefinition
        {
            Path = "~/js/libs/jquery/jquery.js",
            DebugPath = "~/js/libs/jquery/jquery.js"
            ,
            CdnPath = "http://ajax.microsoft.com/ajax/jQuery/jquery-1.9.1.min.js",
            CdnDebugPath = "http://ajax.microsoft.com/ajax/jQuery/jquery-1.9.1.min.js"


        });

        ScriptManager.ScriptResourceMapping.AddDefinition("Twitter", new ScriptResourceDefinition
        {
            Path = "js/libs/bootstrap/bootstrap.min.js",
            DebugPath = "~/js/libs/bootstrap/bootstrap.min.js"
            ,
            CdnPath = "http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js",
            CdnDebugPath = "http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"

        });
    }

在我的剧本管理员中:

 <asp:ScriptManager ID="Sm" runat="server" LoadScriptsBeforeUI="true" EnableCdn="true" EnableCdnFallback="true">

如您所见,我设置了cdn的路径和本地文件的路径。当我在没有互联网连接的情况下进行测试时,它不会回退到本地文件。 (仍尝试从cdn加载) 我误解了这个功能的概念?

1 个答案:

答案 0 :(得分:2)

好吧,经过网上搜索,我发现这个article很好地解释了这个概念。显示要使用的配置以及如何使用和不使用aspnet 4.5。

我希望这可以帮助那些人