0

我有一个包含两个项目的解决方案。一个可移植区域项目,以及一个引用可移植区域项目的网站,并且两者都引用 MvcContrib。

我遇到的问题是嵌入式资源,当我尝试访问它们时,它们给了我一个 404 错误。似乎它正在尝试访问物理路径而不是 dll。部分视图工作正常。

我试图访问的文件在我的 Visual Studio 解决方案资源管理器中看起来像这样

AdHocReporting/Areas/AdHocReportBuilder/Content/adhoc.css(嵌入构建动作)

这是便携式区域的路由:

using System.Web.Mvc;
using MvcContrib.PortableAreas;

namespace AdHocReporting.Areas.AdHocReportBuilder
{
    public class AdHocReportBuilderAreaRegistration : PortableAreaRegistration
    {
        public override string AreaName
        {
            get { return "AdHocReportBuilder"; }
        }

        public override void RegisterArea(AreaRegistrationContext context, IApplicationBus bus)
        {
            RegisterRoutes(context);
            RegisterAreaEmbeddedResources();

        }
        private void RegisterRoutes(AreaRegistrationContext context)
        {
            context.MapRoute(
              AreaName + "_content",
              base.AreaRoutePrefix + "/Content/{resourceName}",
              new { controller = "EmbeddedResource", action = "Index", resourcePath = "Content" },
              new[] { "MvcContrib.PortableAreas" }
          );

            context.MapRoute(
                AreaName + "_default",
                base.AreaRoutePrefix + "/{controller}/{action}/{id}",
                new { action = "Index", id = UrlParameter.Optional }
            );
        }
    }
}

这是对便携式区域的引用的网站 Global.aspx

namespace AdHocReportingSite
{
    public class MvcApplication : System.Web.HttpApplication
    {
        public static void RegisterGlobalFilters(GlobalFilterCollection filters)
        {
            filters.Add(new HandleErrorAttribute());
        }

        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
            routes.MapRoute(
                "Default", // Route name
                "{controller}/{action}/{id}", // URL with parameters
                new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );

        }
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();
            PortableAreaRegistration.RegisterEmbeddedViewEngine();
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
        }
    }
}

这是我的解决方案探索的图像:

解决方案资源管理器

4

2 回答 2

0

一旦我创建了一个新项目并重新进行了所有操作,就无法重现该问题。我不确定这是否是一个错误,或者我只是错过了设置便携式区域的步骤。

于 2013-05-20T19:21:29.063 回答
0

在 Web.Config 中为每种文件类型添加:

<system.webServer>
  <handlers>
    <add name="js" path="*.js" verb="*" type="System.Web.Handlers.TransferRequestHandler" resourceType="File" preCondition="integratedMode" />
  </handlers>
</system.webServer>

这将使 IIS 尝试使用定义的路由而不是搜索静态文件。

于 2014-09-12T19:29:34.017 回答