Answer: The Client side validation happened on the generated html. This can be say like, it’s fully happened on the browser side. If web page accepts the user input, always have to validate data in client side before pass to server side. The Server side validation fully happened in the server side. Before process the data in server side have to validate to ignore unnecessary errors.The server side validation is increase or overhead to server but client side validation is not. |