I have a view where in textbox user enters a value. It may be number, character, special character anything. But I want to validate that user is not allowed to enter ONLY spaces. User can enter spaces with characters, but ONLY spaces are not allowed.
For eg.
User can enter Name : Stack ""space" Overflow
but user should not be allowed to enter
Name : "space" "space" "space"
Problem is I cant check it server side as my models are DTO defined in another project which is loaded as dll in this one.