You can use an ImageButton
with a server side click event:
Response.Redirect("SecondPage.aspx");
Or alternatively, you could wrap a Hyperlink
control around the Image
control:
<asp:hyperlink id="link" runat="server">
<asp:image id="img" runat="server" imageurl="..." />
</asp:hyperlink>
Or just use a HTML anchor tag if you don't need the link to be dynamic:
<a href="..">
<asp:image id="img" runat="server" imageurl="..." />
</a>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…