193k views
5 votes
Question No. 17

Where do the ASPNET validation controls validate data, on the Client or on the Web Server?
01 Client side only
OFirst on Client side then on Server Side
O First on server side then on Client side
on Server side only

User Androliyah
by
7.2k points

1 Answer

3 votes

Final answer:

ASPNET validation controls validate data on both the client side and the server side, providing real-time feedback to the user and an additional layer of security.


Step-by-step explanation:

The ASPNET validation controls validate data on both the client side and the server side.

These validation controls can be configured to perform validation on the client side using JavaScript, which helps to provide real-time feedback to the user without requiring a round-trip to the server. This improves the user experience by minimizing delays.

However, it's important to note that the validation should always be performed on the server side as well. This is because client-side validation can be bypassed or altered by users, so server-side validation provides an additional layer of security.


Learn more about ASPNET validation controls