I've got a textbox, and want to show some example text in it, and want example text to disappear when user begins typing actual text.
I tried placing a label that contains example exactly over the textbox, and then setting label visible=false upon textbox textchanged event.
But textchanged event doesn't fire.
Using Visual BASIC 2014 ASP.NET Web Application project.
Needs to work on all major browsers and platforms.
HTML:
<asp:Label ID="FIRST_NAME_EXAMPLELabel" runat="server" BackColor="#E5F2EA" Font-Italic="True" ForeColor="#44C179" Text="Joe"></asp:Label>
<asp:TextBox ID="FIRST_NAME_box" runat="server" BackColor="#E5F2EA" BorderWidth="0px" Font-Italic="False" Font-Size="Large" Width="274px"></asp:TextBox>
Go to the complete details ...