Ext.Net(ext.axd未加载)不能与Windows Azure一起使用

时间:2013-07-02 17:21:05

标签: asp.net-mvc windows azure ext.net webresource.axd

我正在尝试使用Ext.Net构建Windows Azure站点。该项目可以下载here。 每当我尝试在浏览器(在本地)上查看示例(Ext.NET.Default.aspx)页面时,我都会遇到错误

  • 无法加载资源:服务器响应状态为404 (未找到)=>本地主机/ extnet / extnet-全JS / ext.axd?V = 40838
  • 无法加载资源:服务器响应状态为404(未找到)=>本地主机/ ExtJS的/ EXT-全JS / ext.axd?V = 40838
  • 未捕获的ReferenceError:Ext未定义Ext.NET.Default.aspx:14

RegisterRoute是:

    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{*allaxd}", new { allaxd = @".*\.axd(/.*)?" });

        //routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
        routes.IgnoreRoute("{handler}.ashx");
        //routes.IgnoreRoute("extnet/{*pathInfo}");
        //routes.IgnoreRoute("extjs/{*pathInfo}");
        routes.IgnoreRoute("icons/{*pathInfo}");
        routes.IgnoreRoute("Resources/{*pathInfo}");
        //routes.IgnoreRoute("{handler}.axd");
        routes.IgnoreRoute("Content/{*pathInfo}");
        routes.IgnoreRoute("favicon.ico");
    }

0 个答案:

没有答案