This drop down menu works using CSS. I just included it on the page and would give credit where I found it - but have long since lost that page.
Also my Drop Down Menu would not work once I published to the website until I turn Compatibility Mode OFF(Yes we are required to use IE and have no control over that decision):
<style type="text/css" media="screen">
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 15px;
font-size: 15px;
border: none;
cursor: pointer;
}
.dropdown {
float:left;
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
-moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
-webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #3e8e41;
}
</style>
The DROP DOWN MENU:
<h2>Dropdown Menu</h2>
<p>Move the mouse over the button to open the dropdown menu.</p>
<div class="dropdown" >
<button class="dropbtn">Admin</button>
<div class="dropdown-content">
<a href="#">@Html.ActionLink("Re Names", "Index", "MTS_RENAME")</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Dropdown2</button>
<div class="dropdown-content">
<a href="#">Link 4</a>
<a href="#">Link 5</a>
<a href="#">Link 6</a>
</div>
</div>