ASP.Net Structure
Overview of the ASP.Net structure and layout
This guide provides a comprehensive overview of the ASP.Net structure used in the Aquiry admin template. It explains how the layout is organized, the role of each partial, and how components are structured to create a fully responsive and modular dashboard interface.
<!DOCTYPE html>
<html>
<head>
@Html.Partial("~/Views/Shared/titleMeta.cshtml", new { title = "Starter page" })
@RenderSection("styles", required: false)
@Html.Partial("~/Views/Shared/HeadCss.cshtml")
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
@Html.Partial("~/Views/Shared/menu.cshtml")
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
@Html.Partial("~/Views/Shared/pagetitle.cshtml", new { pageTitle = "Pages", title = "Starter page" })
@RenderBody()
</div><!-- container-fluid -->
</div><!-- End Page-content -->
@Html.Partial("~/Views/Shared/footer.cshtml")
</div><!-- end main content-->
</div><!-- END layout-wrapper -->
@Html.Partial("~/Views/Shared/rightSidebar.cshtml")
@Html.Partial("~/Views/Shared/vendorScripts.cshtml")
<!-- App js -->
<script src="~/assets/js/app.js"></script>
@RenderSection("scripts", required: false)
</body>
</html>