作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我正在尝试使用 asp net mvc 4.5,并且在我的登录 razor View 中工作。此页面与其他页面不同,所以我在顶部
@model HSServer.Models.LoginModel
@{
ViewBag.Title = "Log in";
Layout = null;
}
使用 Layout = null;
以便它不使用母版页。
我尝试运行该应用程序,它在 Layout = null;
行抛出 InsufficentExecutionStackException 并显示
Insufficient stack to continue executing the program safely. This can happen from
having too many functions on the call stack or function on the stack using too
much stack space.
谁能告诉我这是怎么回事!
编辑
它似乎与 Layout = null
无关,因为删除它没有帮助,只是将错误向上移动了一行。仍在挖掘。
最佳答案
明白了。我复制了 this不自知。
在正文中,我调用了 @Html.Action("Login")
而不是我想调用的 @Url.Action("Login")
。该页面递归地调用自身,而不是简单地给我一个 url...哎呀。
关于asp.net-mvc - MVC Razor 文件中的 InsufficentExecutionStackException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16115542/
所以我正在尝试使用 asp net mvc 4.5,并且在我的登录 razor View 中工作。此页面与其他页面不同,所以我在顶部 @model HSServer.Models.LoginModel
所以我正在尝试使用 asp net mvc 4.5,并且在我的登录 razor View 中工作。此页面与其他页面不同,所以我在顶部 @model HSServer.Models.LoginModel
我是一名优秀的程序员,十分优秀!