Adding Hyperlink to Image
Hi All,
I have a asp.net page which has a <asp:image> control. I want to add a dynamic Hyperlink to it.
I have used:
<a href='<%#eval("link")%>' target="_blank"><asp:Image Id="Image3"></a>
where <%#eval("link")%> gives the url link from database
But this doesn't work.
Can anyone help me out.
Thanks in advance !!
|