Hi
Where should the Data Validations be performed at the client side or at the server side and why ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
MuthuMari MPosted May 9, 2012, 3:35 AM
Data validations should be done primarily at the client side and the server-side validation should be avoided because it makes server task overloaded. If the client-side validation is not available, you can use server-side validation. When a user sends a request to the server, the validation controls are invoked to check the user input one by one.
thanks.
If this post is useful then mark it as "Accepted Answer"
Satyapriya NayakPosted May 8, 2012, 12:55 PM
All user input data validation should occur on the server at a minimum. Additionally, client-side validation can be performed where deemed appropriate and feasable to provide a richer, more responsive experience for the user.
Also Please refer the below link
http://stackoverflow.com/questions/162159/javascript-client-side-vs-server-side-validation
Thanks