asp.net c# ToolTip with image inside of it
Posted
by
Web Dev
on Stack Overflow
See other posts from Stack Overflow
or by Web Dev
Published on 2012-11-26T17:03:00Z
Indexed on
2012/11/26
17:03 UTC
Read the original article
Hit count: 130
I currently have a hyperlink control as such:
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 witin a tooltip.
what is the easiest way of doint this? The image is in the Image folder so the path would be as such:
Images/ + lblsub + ".gif";
Note that I am using ASP.NET C#. Thanks in advance
© Stack Overflow or respective owner