Creating a simple framework for specific requirement - that will be used to handle server controls validation errors as per requirement (Validation errors for which we use validation controls).
I want to Design a Web Service which will be used at client side as well as on server side to validate all controls of few forms.
Something which can be called through JQuery or Any other client side framework and validation details will be stored in the form of database in the backend Where Form Name, Error Message and Exact Validation (Similarly few others) will be storedto validate controls... And based on few input parameters service will execute validation of that form at client side itself and show error messages.
DB Form1 Name Not blank corres logic (which is very easy to mention as reqd) Form1 Parameter 1 and Parameter 2 not null logic for the same (How to tackle this sort of)
similarly other records.
Now questions i ...

Go to the complete details ...