Image Map In Your Web Application

If you want to use Image map in your application then use this :-

write this code in your aspx page:-

<div>

 <asp:ImageMap ID="humanbody" runat="server" ImageUrl="~/image/humanbody.jpg" AlternateText="humanbodyparts"
        Width="224px">

        <asp:CircleHotSpot NavigateUrl="~/frmFace.aspx" X="100" Y="10" Radius="30" HotSpotMode="Navigate"
            AlternateText="This is your Face" />

        <asp:CircleHotSpot NavigateUrl="~/frmHeart.aspx" X="110" Y="110" Radius="30" HotSpotMode="Navigate"
            AlternateText="This Is your Heart" />

    </asp:ImageMap>

</div>