Is it possible to deal with multiple tables on single view with both side validation? ASP.NET MVC
I have a question above.
What I want to do is, if a table design is fixed, the entry form is auto generated. And both client-side and server-side validations are valid. My image is like the "Force.com".
In order to do so, I think I can't use DataAnnotations. Because开发者_开发问答 before runtime, a table design is not fixed and I can't define any models. So, if you have any idea to realize it, please let me know.
I understand it's a perverse question, which I try to do without using models in MVC. But I need your help. Thanks.
I think the only way is that you can use the JQuery Validation in client-side, and make the own validation code in server-side.
精彩评论