I am working in asp.net mvc. I have a form in which there are 92 fields(textboxes). Each textbox coming from a xml bypassing some condition. I know this is hard to understand and interpret. In short, I want to validate my textboxes without decorating the Model with MVC Validation Attributes. I have used IClientValidatable but it requires Custom attributes which i dont want. I have used IValidatableObject but it does not have client side validation. For some reasons i can't directly call a Javascript or jQuery function to validate. What should i have to do to validate(client side) my one textbox for Phone number without decorating it with Attributes.
Thanks in advance...