ASP.NET
Programming and Technical
Differentiate between client-side and server-side validations in Web pages.
Read Solution (Total 2)
-
- Client side validation involves check form values directly on the browser via JavaScript before passing the information on to the server. Server side validation involves passing and checking form values on the server after pressing the "Submit" button.
With server-side validation, the form information is submitted and analyzed by the Web server through a server-scripting language, such as PHP or Perl.
- 10 years agoHelpfull: Yes(2) No(0)
- client side validations are the validations which validate controls on the client side, the request for validation doesn't go on the server side whereas on server side the request for validation goes to the server side
- 10 years agoHelpfull: Yes(1) No(0)
ASP.NET Other Question