Hello, I am new to Razor pages and recently integrated the AdminLTE template into my Razor Page application successfully.
In the _Layout.chtml file, I inserted the sidebar menu with anchor tags that link to specific pages, as well as the header bar and footer HTML code. Additionally, I included the following div in the same _Layout.chtml file to render the content pages:
<div class="content-inner-all">
@RenderBody()
</div>
Currently, when I click on a menu option, the content page opens but the entire page, including the sidebar, refreshes. I would like to only refresh the content page without affecting the sidebar. Could someone please advise on how to achieve this?