my requirement is as below. I have a header with the following links: Home, Destinations, Seasons. I want the Destinations link to be a drop down list(containing links Attractions and Popular destinations) on hover. I know how to implement this using html, css and bootstrap, but since im using mvc, navigating to the action method in the controller would be a problem. Below is the code ive got so far. Have no clue how to implement the dropdown list. Please help!
<div class="menu">
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active">@Html.ActionLink("Home", "Index", "Home")</li>
<li>
<ul class="dropdown-menu" aria-labelledby="dropdownmenu1">
<li>@Html.ActionLink("Activities", "Activities", "Home")</li>
<li>@Html.ActionLink("Popular Destinations","Destinations","Home")</li>
</ul>
</li>
<li>@Html.ActionLink("Seasons", "Seasons", "Home")</li>
</ul>
</div>
</div>
I want the links 'Activities' and 'Popular Destinations' to be in the dropdown list of the header link 'Destinations'. Please advice how to achieve this using bootstrap and html helper actionlink.