我有一个MVC布局页面,我的新窗口使用的页面没有导航栏的代码,因为它不应该。
以下是/Views/Shared/_Popup.chstml的相关代码:
<!DOCTYPE html>
<head>
@Styles.Render("~/Content/css")@Styles.Render("~/Content/DataTables-1.11.2")
@Scripts.Render("~/bundles/scripts")
</head>
<body>
<div class="container body-content">@RenderBody()</div>
</body>
非新窗口的页面使用默认的/Views/Shared/_Layout.chstml,并且滚动条按预期显示。一旦它们变得足够大,我怎样才能在新窗口上获得滚动条?