In my original MVC 2 setup, I had links for different views.
<div id="sidebar">
<li> <%=Html.ActionLink("View1", "View1", "Home") %></li>
<li> <%=Html.ActionLink("View2", "View2", "Home") %></li>
<li> <%=Html.ActionLink("View3", "View3", "Home") %></li>
</div>
In the web form, there is an ImageMap control where clicking on different areas navigates to different pages. Now, I want to replace the list in MVC with an image map. Clicking on different spots will take us to various views. I am curious if there is a similar functionality like ImageMap in MVC?
Thank you.