Multiline tooltip in asp.net [closed]
how to display Multiline tooltip in asp.net.
in c#:
control.ToolTip="First Line\nSecond Line";
in vb.net:
control.ToolTip="First Line"+vbCrLf+"Second Line"
I would go with Tipsy: http://plugins.jquery.com/project/tipsy
Demo at: http://onehackoranother.com/projects/jquery/tipsy/
I've used qTip (along with jQuery) with great success. I'd start there if you want multi-line tooltips or tooltips that contain images or any other HTML.
精彩评论