我的ASP.NET MVC Web项目中有html页面。我的意思是HTML不是cshtml。 但我想在我的html文件中包含_layout.cshtml作为标题偏离。
如果我的文件是test.cshtml 然后在页面顶部我会写
@{
Layout = "_Layout";
}
但如果我的文件只是html,如test.html,而不是.cshtml怎么办?我该如何包含或实施 我的test.html中的_Layout.cshtml?
提前谢谢!
<!DOCTYPE html>
<html>
<head>
<title>Countries</title>
<meta charset="utf-8" />
<link href="Content/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<div class="container">
....
...
...
</body>
</html>