Looking for a unique way to create a dropdown menu in ASP.Net Core 1.0? I've scoured the internet but haven't found a solution specifically tailored to this new platform. Can anyone provide guidance on how to build a large dropdown menu in Core 1.0?
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li> <a asp-controller="Home" asp-action="Index">Product</a></li>
<ul>
<li><a>Menu under Product</a></li>
</ul>
<li><a asp-controller="Home" asp-action="Contact">Contact</a></li>
</ul>
Encountering an error when trying to implement the code above - VS2015 is throwing an error message stating that ul elements cannot be nested within each other. This prevents me from implementing hover effects on the Product Site. Any ideas on how to resolve this issue?
Thanks in advance!
CDRohling.