这是我的_ViewStart.cshtml:
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
这是我的_Layout.html:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- Lots of tags for dependencies -->
</head>
<body>
<div class="container body-content">
@RenderBody()
<div class="divider row top-buffer"></div>
<footer>
<p>© @DateTime.Now.Year - MyApp</p>
</footer>
</div>
</body>
</html>
这是我的Index.cshtml:
@Html.RenderApiEndpoints()
<script type="text/javascript" src="~/Content/index.js"></script>
<div ng-app="app">
<div ng-view ></div>
</div>
我正在获取Index.cshtml,如:
public class HomeController : Controller
{
[Route("")]
public ActionResult Index()
{
return View();
}
}
由于我使用Angular $routeProvider
的客户端路由,因此我总是使用Index.cshtml。此外,我不需要布局,我只需要我的Index.cshtml。
如何在浏览器中访问localhost时避免使用Layout-File并直接从我的Index.cshtml开始?
答案 0 :(得分:2)
您可以Layout
null,然后您会看到Index.cshtml view
@{
Layout = null;
}
答案 1 :(得分:1)
以下列方式使用null布局:
@{
Layout = null;
}