User-546006562 posted
We have a database-driven menu, where the URL field in the database is null for the top-level menu choices.
In the sample source code below, "Account Home" should not be a link -- it is the subject heading for links below it.
When I comment out the menu control adapter in the Browsers file, the top-level menu items are as they should be-- not links.
Any thoughts on how to fix this?
<div class="AspNet-Menu-Horizontal" id="ctl00_mnuUser">
<ul class="AspNet-Menu">
<li class="AspNet-Menu-WithChildren">
<a href="javascript:__doPostBack('ctl00$mnuUser','bAccount Home')" class="AspNet-Menu-Link">Account Home</a>
<ul>
<li class="AspNet-Menu-Leaf"><a href="AccountSummary.aspx" class="AspNet-Menu-Link" title="Summary screen of active accounts">Account Summary</a></li>
<li class="AspNet-Menu-Leaf"><a href="TrustCoNews.aspx" class="AspNet-Menu-Link" title="Recent news for the Trust Company">
TrustCo News</a></li>
</ul>
</li>