- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们刚刚获得了一个新的 Windows 2008 R2 服务器,我正在尝试使用 Razor View 引擎在 IIS 7.5 中设置一个 MVC 3 站点。访问默认路由时出现奇怪的错误。
The layout page "~/Views/Shared/_Layout.cshtml" could not be found at the following path: "~/Views/Shared/_Layout.cshtml".
/views/home/index.cshtml
中显式设置了布局像这样:
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
/views/shared/_layout.cshtml
存在于文件系统中。这是一个屏幕截图。
Layout = "~/Views/Shared/_Layout.cshtml";
在我看来,页面会渲染出
/home/index.cshtml
的内容全部靠它自己(没有来自
_Layout.cshtml
的任何代码)。我也尝试使用
_ViewStart.cshtml
设置布局.
[HttpException (0x80004005): The layout page "~/Views/Shared/_Layout.cshtml" could not be found at the following path: "~/Views/Shared/_Layout.cshtml".]
System.Web.WebPages.WebPageExecutingBase.NormalizeLayoutPagePath(String layoutPage) +204956
System.Web.WebPages.WebPageBase.PopContext() +150
System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +384
System.Web.Mvc.<>c__DisplayClass1c.<InvokeActionResultWithFilters>b__19() +33
System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation) +784900
System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) +265
System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +784976
System.Web.Mvc.Controller.ExecuteCore() +159
System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +335
System.Web.Mvc.<>c__DisplayClassb.<BeginProcessRequest>b__5() +62
System.Web.Mvc.Async.<>c__DisplayClass1.<MakeVoidDelegate>b__0() +20
System.Web.Mvc.<>c__DisplayClasse.<EndProcessRequest>b__d() +54
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +453
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +371
最佳答案
看起来您可能有权限问题。根据您提供的信息,这似乎是无法找到 _Layout.cshtml 文件的最可能原因。
在 Server 2008 和 IIS 7 中,应用程序池具有用于 ACL 的自己的标识(名为 IIS AppPool{App Pool Name}),并且这些标识成为 IIS_IUSRS 组的一部分。此外,您的默认 inetpub/wwwroot 目录将对 IIS_ISRS 组具有读取权限。因此,如果您没有获得所需的权限,我认为应用程序池实际上并没有以正确的身份运行。
身份可能不正确的原因之一是匿名身份验证用户身份的设置。进入站点(或整个服务器)的身份验证控件并编辑匿名身份验证规则以作为应用程序池身份运行。
这有点猜测,但似乎this fellow had nearly the exact same issue .
关于asp.net-mvc-3 - 找不到布局页面 "{path}",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6145636/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!