Hi, I need to create a menu(parent) with three subelements like (Add,Edit,Delete).
<li ><%= Html.ActionLink("Log", "Index", "Log")%></li>
<li><%= Html.ActionLink("Administration", "Administration", "Log")%></li>
</ul>
Under Log I need to add three elements (Add,Edit,Delete). How to achieve that.
Thanks, Manish