views:

72

answers:

3

My team members don's support the use of validation controls that are available in asp.net (for web application).

What are arguments in favor of validators instead of or in addition to javascript validation?

A: 

It is definately good to use ValidationControls in asp.net. What justifications are you given for not using them ?

this. __curious_geek
People told that, java script much better than validation controls.
Ayyappan.Anbalagan
+4  A: 

Javascript validation only runs on the client. It's easy for a junior level programmer to write his own user interface that bypasses all of the Javascript validation you put in place.

You need server-side validation to ensure this type of thing does not happen.

"Never trust a client application"

Eric J.
+1  A: 

When you say validators you really mean server side validation right ? It is pretty much answered in this thread JavaScript ClientSide vs. ServerSide Validation

You MUST include server side validation if you want to protect your app from hackers.

Khan