PDA

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



gunjanjain
07-24-2019, 01:48 AM
Hello friends,

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

John-Smith
07-24-2019, 01:55 AM
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. Client Side Validation does not require a postback.

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

RH-Calvin
07-25-2019, 03:17 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.

evejones
07-25-2019, 05:17 AM
Client Side Validation. When validation is done using a script (usually in the form of JavaScript) in the page that is posted to the end user's browser to perform validations on the data entered in the form before the form is posted back to the originating server. Then , client-side validation has occurred.