I have a large image and only want a rectangle portion of it to be a hot spot link that goes "Home". Here is my code that is not working. Any help on what I am missing or have done wrong? Thanks!
<div id="defaultPic" runat="server">
<img src="Images/boardwise-home.jpg" alt="Boardwise Home" usemap="#map" />
<map name="map" id="boardwise-home">
<area shape="rect" coords="32,23,32,105,275,105,275,23" href="~/default.aspx"
title="Boardwise Home" alt="Home" />
</map>