我创建了一个 helloWorldController,为此我创建了一个索引方法
这是为我生成的视图代码
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Index</h2>
我的 _layout 页面是默认的 ASP.NET MVC 4 布局。但是我仍然得到空白页,其中包含从 Index 方法返回的字符串。
如何为视图启用 _Layout 页面?
我创建了一个 helloWorldController,为此我创建了一个索引方法
这是为我生成的视图代码
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Index</h2>
我的 _layout 页面是默认的 ASP.NET MVC 4 布局。但是我仍然得到空白页,其中包含从 Index 方法返回的字符串。
如何为视图启用 _Layout 页面?