I have an ASP.NET Label. I want to display a message after hovering the mouse over the label.
How can I do that?
I have an ASP.NET Label. I want to display a message after hovering the mouse over the label.
How can I do that?
I'm not sure about how to do it specifically with a label, but see if you can use the abbr tag. This will display some text but will display different text when hovered over.
You can set the Tooltip attribute like so:
<asp:Label ToolTip="A nice tooltip!" runat="server">Something</asp:Label>