Question : Put link inside an image

Hi experts
Could someone show me  how to put a link onto an image by altering the code supplied.
1:
2:
3:
4:
<asp:HyperLink ID="HyperLink1" runat="server" 
            NavigateUrl="~/images/DSC00589.JPG">HyperLink</asp:HyperLink>
        <asp:Image ID="Image1" runat="server" Height="156px" 
    Width="276px" ImageUrl="~/images/DSC00593.JPG" style="margin-left: 0px" />

Answer : Put link inside an image

Here's the basic structure for placing an image on a page with three links at the bottom, overlaying the image. Remove the border around the image if you don't need it.
1:
2:
3:
4:
5:
6:
7:
8:
<div id="largeImage" style="width:158px;height:278px;background-image:url(~/images/DSC00593.JPG);border:thin solid red;">
        <div id="spacer" style="width:156px;height:236px;"></div>
        <div id="links" style="width:156px;height:38px;text-align:center;">
            <asp:Hyperlink ID="link1" runat="server" Text="Link 1" NavigateUrl="http://www.google.com"></asp:Hyperlink>&nbsp;&nbsp;
            <asp:Hyperlink ID="link2" runat="server" Text="Link 2" NavigateUrl="http://www.yahoo.com"></asp:Hyperlink>&nbsp;&nbsp;
            <asp:Hyperlink ID="link3" runat="server" Text="Link 2" NavigateUrl="http://www.microsoft.com"></asp:Hyperlink>
        </div>
    </div>
Random Solutions  
 
programming4us programming4us