我想知道其他人是否也有同样的问题或是否只是我!
鉴于我有一个视图Purchases.aspx
和一个部分视图Purchases.ascx
:
如果我执行Purchases.aspx
Html.RenderPartial("Purchases")
,那么WebDev.WebServer40.exe基本上会关闭。
我猜这是由堆栈溢出引起的,因为RenderPartial
无法确定它应该呈现的内容(.aspx或.ascx)。
这是一个错误,它是一个定义的行为,还是只是发生在我身上?
答案 0 :(得分:7)
这是定义的行为,因为ViewLocationFormats和PartialViewLocationFormats定义如下,并且将首先查看aspx页面。
ViewLocationFormats = new[] {
"~/Views/{1}/{0}.aspx",
"~/Views/{1}/{0}.ascx",
"~/Views/Shared/{0}.aspx",
"~/Views/Shared/{0}.ascx"
};
PartialViewLocationFormats = ViewLocationFormats;
在我看来, PartialViewLocationFormats应该排除aspx定义。覆盖默认的WebFormViewengine可以解决此问题。注意,您需要在Application_Start()
方法
public class ASPXViewEngine: WebFormViewEngine
{
public ASPXViewEngine()
{
base.PartialViewLocationFormats =
new string[]
{
"~/Views/{1}/{0}.ascx",
"~/Views/Shared/{0}.ascx"
};
base.AreaPartialViewLocationFormats =
new string[]
{
"~/Areas/{2}/Views/{1}/{0}.ascx",
"~/Areas/{2}/Views/Shared/{0}.ascx",
};
}
}