I'm looking for ways to display some text for the user within an <asp:textbox>
that can help him know what data/format of text he should enter in each textbox. It's looks like this (Sample from Facebook Sign up page) :
My only solution now is to
1- set the default text for the textbox in the aspx
2- Set its color to grey
3- Onclick of the textbox :
1- Change color to black
4- Onchange, if text is empty set the text back to default
This sounds like i'm developing in the 90s, is there an out-of-the-box property for the textbox to do this, or any more intelligent way to do it ?
Happy New Year