tooltip
-
hi who i do create dinamic tooltip for asp controls ? i want read contant tooltip from database thanks
-
hi who i do create dinamic tooltip for asp controls ? i want read contant tooltip from database thanks
Well, it's "hard" to understand your question because of used poor English and not clear question. Which is your real problem on your task?
I Love T-SQL "VB.NET is developed with C#.NET" If my post helps you kindly save my time by voting my post. www.cacttus.com
-
hi who i do create dinamic tooltip for asp controls ? i want read contant tooltip from database thanks
Sir; you can use on of the following:
string content = ReadFromDatabase();
control.Attributes.Add("title",content);<HTMLControl title="<%# Eval("Content") %>" />
or
<asp:WebControl ToolTip="<%# Eval("Content") %>" />
Help people,so poeple can help you.