Orginally I have links for view in MVC 2.\[code\] <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>\[/code\]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.