PDA

View Full Version : What Is Server Side Validation In Website..?



vashilove
07-24-2019, 02:12 AM
Hello friends,


I Would Like To Know That What Is Server Side Validation In Website..?

robertdavid718
07-24-2019, 02:23 AM
I would like to say that any work you do at the backend of your website is called server validation.

eCommerceChamp
07-24-2019, 02:23 AM
Validation can be defined by many different methods, and deployed in many different ways. Server side validation is performed by a web server, after input has been sent to the server. Client side validation is performed by a web browser, before input is sent to a web server.

Saravanan28
07-24-2019, 09:24 AM
In server-side validation, all the input validations and error recovery process are carried out on the server-side.

akshaypandit
07-25-2019, 02:08 AM
Server side validation is performed by a web server, after input has been sent to the server.

RH-Calvin
07-25-2019, 03:00 AM
Validations can be performed on the server side or on the client side ( web browser). The user input validation take place on the Server Side during a post back session is called Server Side Validation and the user input validation take place on the Client Side (web browser) is called Client Side Validation.

Pihu
07-26-2019, 02:27 AM
Server-side validation is validation that occurs on the server after the data has been submitted.