Tagged Questions

16
votes
13answers
894 views

Why is client-side validation not enough?

I saw here that: As you probably already know, relying on client-side validation alone is a very bad idea. Always perform appropriate server-side validation as well. Could you explain ...
12
votes
3answers
6k views

Asp.Net MVC EnableClientValidation doesn't work

I want as well as Client Side Validation as Server Side Validation. I realized this as the following: Model: ( The model has a DataModel(dbml) which contains the Test class ) namespace ...
11
votes
3answers
3k views

IValidatableObject in MVC3 - client side validation

With MVC3 you have two new mechanisms for adding custom validation. These are (1) subclass ValidationAttribute or (2) implement IValidatableObject. The ValidationAttribute allows you to add client ...
4
votes
2answers
2k views

Validation with backbone.js and Ruby on Rails

Does anyone have any advice or examples for doing validation with backbone.js and ruby on rails 2.x or 3.x?
4
votes
4answers
266 views

Why is client-side validation a security risk as opposed to server-side validation?

I don't quite understand why client side validation is a potential security risk or more of a security risk than server side validation? Can someone give me some scenarios?
4
votes
1answer
932 views

What can be causing Html.ValidateFor() method to produce a compile error?

I have view with the following which works: <%= Html.TextBoxFor(m => m.FirstName, new { @class = "required_field_light" }) %> <%= Html.ValidationMessageFor(m => m.FirstName) %> ...
2
votes
7answers
331 views

Why do we need server side as well as client side validation for Web applications?

Is there any high level reason to have both client side and server side validations for a web application ?
2
votes
2answers
736 views

Validators: Do they Stay disabled on postback when disabled ClientSide?

I have been learning alot about the standard asp.net Validators, and my latest discovery was about how to disable a validator client side, which was pretty cool. now, if my initial post has the ...
1
vote
4answers
30 views

Is it ok to not display an error when server side verification fails when JavaScript is required?

We have a form that absolutely requires JavaScript to function, and validation is done client side. Validation is also performed client side, but it would be an extreme amount of work to get it to ...
1
vote
2answers
222 views

ASP.NET MVC ValidationAttribute Get Other Property Display Name

I have created a custom CompareLessThan validation attribute by copying the ASP.NET MVC 3 CompareAttribute and instead of checking for equality, I check to see that one property is less than another. ...
1
vote
2answers
363 views

Enable/Disable Validation of certain hidden textboxes in mvc 2

I have got [hide] and [unhide] input buttons , the hide button shows some text boxes while the hidden button hide some text boxes, What I want to do is to enable validation only for those boxes which ...
1
vote
1answer
198 views

“Email is already taken” error when user logs in with client_side_validations and devise

I am trying to use both client_side_validations and devise in my Rails app, and get a weird bug in the log in form. It's says that the email has already been taken and doesn't let the user to log in ...
1
vote
1answer
238 views

Client Side Validations on Heroku

I am using https://github.com/bcardarella/client_side_validations to validate my sign up form. I am validating the uniqueness of username and email in that form: validates_uniqueness_of :username, ...
1
vote
2answers
303 views

Disable all client side validation in an Asp.Net site

I would like to disable all client side validation in an Asp.Net web site in order to test that server side validation is correct (i.e. I want to test against people altering the response or tampering ...
1
vote
0answers
472 views

ASP.NET Validate all validators with different validation groups

I'm writing an ASP.NET page and trying to get validation working. My problem is that I've got a repeater that contains several custom grid controls, each of which has validators and a validation ...
0
votes
2answers
49 views

jQuery validation for client-side dynamic controls

I have controls that are dynamically added via javascript. I cannot set the class on these controls to “required” because I need the flexibility to place the error messages where I will. When I add ...
0
votes
6answers
67 views

User input validation, client-side or server-side? [PHP/JS]

Is it better to validate user input before it's sent to the server with JS or server side with PHP? Or maybe it's worth doing both just to be on the safe side? I'm creating a site (very simple at the ...
0
votes
1answer
380 views

jQuery - SmartWizard. How can I override “Previous” button validation?

Basically, I need to validate data when the "Next" button is clicked, but if the user wants to go back I do not want to validate if they have introduced the required fields for the current step ...
0
votes
0answers
133 views

Rails 3 - client_side_validation and how to work with checkbox?

I am using on my pages client_side_validation and everything works fine. But now I have in my form 2 checkboxes and I need to check the user fill one of them (I used jQuery for denied to fill both). ...
0
votes
3answers
78 views

jQuery validation needed

Thanks for taking the time to help out. I'm using ASP.NET WebForms and I need a build a custom control for a custom CMS. I've implemented the server-side validation already. What it does is it check ...
0
votes
1answer
298 views

client_side_validations gem password field devise

I'm trying to setup client_side_validations for the password field in devise. One of my validations is presence of a password. The problem is in the edit form, the :password field is for the new ...
0
votes
4answers
295 views

ASP.NET MVC and partial client side validation

I have huge form that I'd like to split in different steps, but I need to validate the fields in the current step before go to the next step. E.g.: My form has 40 fields, and they are divided in 4 ...
0
votes
4answers
1k views

Disable client side validation for some fields in ASP.NET MVC

How can I conditionally disable client-side validation of some fields ? Here is the example of what I need to do: user writes name and address and submits. Both are validated both server and ...
0
votes
2answers
94 views

ASP.NET validation: gathering information from client-side validation

I'd like to implement ajax message box that will gather information from validators on a page when client-side validation fires. Like: I have left some text fields blank then press submit button and ...
0
votes
1answer
136 views

Asp.net mvc client side validation - show errors in the same div

How do I list all generated errors in the same div? Something like this: <div id="errors"> <ul> <li>Email is invalid</li> <li>Firstname is required</li> ...
0
votes
1answer
153 views

ASP.NET MVC2 Client Validation bug?

I enable client validation using the Html.EnableClientValidation method in my view. This client-side validation works great for text boxes, but I think I might have found a bug when used with ...
-1
votes
1answer
229 views

Javascript to check validation and change textbox color

Check out the code: <script type="text/javascript"> function ValidateTextBox(source, args) { var is_valid = false; //Regex goes here var regex = /^[a-z A-Z]+$/; ...