I'm working on ASP.NET with C#.
I have a TextBox
and I want to validate if the user is writing the correct length for the TextBox
.
If the user is not entering the correct length I want a message to display on a label. But I want this check to happen on the fly, as the user is writing.
How can I do this?
Thanks.