tooltip
how to show an image as a tooltip for an asp.net gridview template controls(like label,textbox, etc....) dynamically
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
manohar vakkalaPosted May 7, 2010, 12:53 PM
For this type functionality we want to use javascript which i dont know....
Please give me a solution
Jaish MathewsPosted May 7, 2010, 12:36 PM
You can't implement it as a tool tip. But using a picture box you can.
private void label6_MouseEnter(object sender, EventArgs e)
{
pictureBox1.Visible = true;
}
private void label6_MouseLeave(object sender, EventArgs e)
{
pictureBox1.Visible = false;
}