I currently have a hyperlink control as such:
<asp:HyperLink ID="logoLink" runat="server" NavigateUrl="#"></asp:HyperLink>
I am setting the logo text of it as such within my grid:
HyperLink logoLink = (HyperLink)e.Item.FindControl("logoLink");
logoLink.Text = lblsub + ".gif";
What I like to do is that when a user clicks on the hyperlink, I like the gif file to show within a tooltip.
what is the easiest way of doing this? The image is in the Image folder so the path would be as such:
Images/ + lblsub + ".gif";
You can use
jQuery/JavaScriptto achieve this.There are different custom tooltips can be found online.
I have came across this Tooltip your images which is pretty cool.
Also have a look qTip