How do I set default text for asp textbox during page load and clear them when focused on..
I know to do it in html textbox using javascript and jquery..But how to do it in asp.net.. Any help please..
I wrote
<asp:TextBox ID="Rloginemail" runat="server" Width="100%" Height="25px"
BackColor="#ECE8D0" BorderStyle="None" ForeColor="#482B1B"
Text="E-MAIL" >E-MAIL</asp:TextBox>
In the above code you can see text=email
.. if I use this default text is shown but not cleared on focus..