I want to validate a username as the user is typing according. The validation requirements are:
- no whitespace;
- no special characters;
- within a defined minimum and maximum length; and
- not the same as an existing username.
How do I do this using jQuery and ASP.NET?