标签: asp.net-mvc view
在asp.net MVC中,当我在cshtml文件中工作时,有没有办法确定父布局文件,如果我不知道它是哪一个?
答案 0 :(得分:2)
默认布局页面在/Views/_ViewStart.cshtml
/Views/_ViewStart.cshtml
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
否则在顶部的.cshtml文件中指定
.cshtml