[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webcontrols

ToolTip to show textbox.text property

Joe Spin

1/13/2003 4:03:00 PM

Hi,

Can any one help me how can i show the content of a text box on a
tooltip like:

<asp:textbox id="tbGroups" style="Z-INDEX: 131; LEFT: 192px;
runat="server" AutoPostBack="True" Width="40px" Height="20px"
BorderStyle="Solid" ReadOnly="True" ToolTip= "XXX"></asp:textbox>

*** Sent via Developersdex http://www.develop... ***
Don't just participate in USENET...get rewarded for it!
1 Answer

Kim Bach Petersen

1/13/2003 4:36:00 PM

0

> Can any one help me how can i show the content of a text box on a
> tooltip like:
>
> <asp:textbox id="tbGroups" style="Z-INDEX: 131; LEFT: 192px;
> runat="server" AutoPostBack="True" Width="40px" Height="20px"
> BorderStyle="Solid" ReadOnly="True" ToolTip= "XXX"></asp:textbox>

In your code set:

tbGroups.ToolTip = tbGroups.Text

Kim :o)