Orginally I have links for view in MVC 2.
<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>
There is ImageMap control in web form, in which you can click different link to different page. Now I am going to replace the list in MVC with an image. By clicking different spots then we can go to different view. I just wonder whether there is a similar ImageMap in MVC?
Thanks.
There isn’t a built-in solution for MVC.
But you could check this out: http://forums.asp.net/t/1644834.aspx/1?How+to+create+img+map+area+in+MVC+2