https://i.sstatic.net/J5vTw.png
For my first attempt at utilizing bootstrap, I have grasped the concept of linking the js and stylesheets in the head section of a master page. Despite following the necessary steps, I am encountering issues with setting the active class based on the clicked page. I am uncertain about what mistake I might be making; please forgive me if the solution is simpler than I realize.
<head runat="server">
<title></title>
<link href="Style/css/bootstrap.css" rel="stylesheet" />
<script src="Style/js/bootstrap.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.js"></script>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
The code doesn't display correctly here, so I've shared it on pastebin for better formatting.