Tagged Questions
Form validation generally refers to validation of a web page form. For any other type of validation prefer 'validation' tag.
207
votes
16answers
109k views
A potentially dangerous Request.Form value was detected from the client
Everytime a user posts something containing < or > in a page in my webapp, I get this exception thrown.
I don't want to go into the discussion about the smartness of throwing an exception or ...
39
votes
10answers
19k views
How do I stop Chrome from yellowing my site's input boxes?
Among other text and visual aids on a form submission, post-validation, I'm coloring my input boxes red to signify the interactive area needing attention.
On Chrome (and for Google Toolbar users) the ...
31
votes
7answers
16k views
jQuery Validate - require at least one field in a group to be filled
I'm using the excellent jQuery Validate Plugin to validate some forms. On one form, I need to ensure that the user fills in at least one of a group of fields. I think I've got a pretty good solution, ...
29
votes
21answers
5k views
Regexp recognition of email address hard?
I recently read somewhere that writing a regexp to match an email address, taking into account all the variations and possibilities of the standard is extremely hard and is significantly more ...
28
votes
4answers
27k views
jQuery Validation plugin: disable validation for specified submit buttons
I have a form with multiple fields that I'm validating (some with methods added for custom validation) with Jörn Zaeffere's excellent jQuery Validation plugin. How do you circumvent validation with ...
19
votes
6answers
2k views
ASP.NET MVC ValidateInput(false) stops working with xVal and [RegularExpression] DataAnnotation
I would like to intercept the "<" character in the form field by a regex validator. I will describe the problem in 3 steps:
Step 1: When I try to submit a form with a field containing the "<" ...
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 ...
16
votes
5answers
8k views
How do I make a checkbox required on an ASP.NET form?
I've done some searching on this, and I've found several partial answers, however nothing that gives me that warm fuzzy "this is the right way to do this". To answer the most frequently occurring ...
15
votes
4answers
12k views
Determine if page is valid in JavaScript - ASP.NET
What is the best way to determine if a form on an ASPX page is valid in JavaScript?
I am trying to check the validation of an user control that was opened using the JavaScript ...
14
votes
4answers
3k views
Strict HTML Validation and Filtering in PHP
I'm looking for best practices for performing strict (whitelist) validation/filtering of user-submitted HTML.
Main purpose is to filter out XSS and similar nasties that may be entered via web forms. ...
13
votes
9answers
12k views
ASP.NET MVC - Custom validation message for value types
When I use UpdateModel or TryUpdateModel, the MVC framework is smart enough to know if you are trying to pass in a null into a value type (e.g. the user forgets to fill out the required Birth Day ...
12
votes
17answers
2k views
“Date of birth” validation: How far/much would you go?
I'm quite anal about form validation. So while creating a validator for a "data of birth" (DOB) field in one of my current projects for a job application form (platform/language is neutral in this ...
11
votes
3answers
2k views
override css for html5 form validation/required popup
How can I override the default popup for a required field on a HTML5 form?
Example: http://jsfiddle.net/uKZGp/ (make sure you click the submit button to see the popup)
The HTML
<form>
...
11
votes
1answer
2k views
JSR 303 Bean Validation + Javascript Client-Side Validation
What is the best way to perform client-side form validation using Javascript (with minimal code duplication) when using JSR 303 bean validation on the server side? I'm currently using Spring 3 and the ...
11
votes
2answers
3k views
How to write custom client-side jQuery validation in ASP.NET MVC 2 RC?
I've read Phil Haack's post on custom client-side validation in ASP.NET MVC 2. I want to do the same thing but with the jQuery adapter and using ASP.NET MVC 2 RC (as opposed to MVC 2 Beta that the ...
11
votes
5answers
16k views
checking if number entered is a digit in jquery
I have a simple textbox in which users enter number. Does jQuery have a isDigit function that will allow me to show an alert box if users enter something other than digits?
the field can have ...
10
votes
5answers
5k views
RequiredFieldValidator - how to get rid of the default red font color
I can't seems to change the default color of the required field validator. In the source it is:
<span class="required">*</span>
<asp:RequiredFieldValidator ID="valReq_txtTracks" ...
9
votes
3answers
330 views
How to use the validation rules on both client-side and server-side?
I'm using jQuery validation system for client-side validation. The backend works with django.
jQuery use an interesting set of rules in JSON format.
Does exists something to use the same rules on ...
9
votes
7answers
2k views
form validation with javascript vs php
Why should I bother to use JavaScript for form validation when I still have to use PHP since the user could have JavaScript support turned off.
Isn't it unnecessary?
Update:
Ok thanks for your ...
9
votes
3answers
18k views
Spring MVC validation with Annotations
I'm having quite some trouble since I migrated my controllers from classical inheritance to use the annotations like @Controller and @RequestMapping. The problem is that I don't know how to plug in ...
9
votes
10answers
1k views
Where do you record validation rules for form data in a web application?
Say you have a web form with some fields that you want to validate to be only some subset of alphanumeric, a minimum or maximum length etc.
You can validate in the client with javascript, you can ...
9
votes
7answers
9k views
UK Postcode Regex (Comprehensive)
I'm after a regex that will validate a full complex UK postcode only within an input string. All of the uncommon postcode forms must be covered as well as the usual. For instance:
Matches
CW3 9SS
...
8
votes
5answers
357 views
Form validation library for Android?
Is there any mature form validation API / library for Android?
I've found http://code.google.com/p/android-binding/ but it seems that is under heavy development.
UPDATE: Just to clarify my question. ...
8
votes
4answers
2k views
Recommendation for python form validation library
I would like a form validation library that
1.separate html generation from form validation;
2.validation errors can be easily serialized, eg. dumped as a json object
What form validation library ...
8
votes
7answers
839 views
Is it possible to have Client-side Validation WITHOUT Javascript
simple question really (can hazard a guess but just need to make sure),
Just need a Yes/No answer as can't seem to claify anywhere.
Reason? Web pages for phones, where javascript support is ...
8
votes
5answers
9k views
ASP.net RequiredFieldValidator not preventing postback
I have a question about what could stop a RequiredFieldValidator from preventing a postback.
I began working on an older, but simple aspx form and my predecessor used manual, server-side form ...
8
votes
5answers
350 views
ASP.NET MVC RC2 - Why can't I use the normal validation options? e.g. RequiredFieldValidator
I'm trying to validate a basic form, can i not use the standard validation controls? Everywhere i'm looking seems to try and use something like the below
<%= Html.ValidationSummary() %>
<% ...
8
votes
1answer
1k views
Errors on non model fields in rails
What's the best way to report errors on form fields not associated with a particular model in Rails? As an example, I have a form for the batch creation of user accounts with random users / passwords. ...
7
votes
9answers
324 views
Why should you validate forms using javascript?
What is the point in validating your HTML forms using Javascript, if you are always going to need to validate the forms using PHP anyway? I realize that you get a speed boost from this, and its more ...
7
votes
6answers
9k views
Dynamically enable or disable RequiredFieldValidator based on value of DropDownList
I have an ASP.NET form with three text inputs, one each for "Work Phone", "Home Phone" and "Cell Phone". Each of these text inputs has a RequiredFieldValidator associated with it. I also have a ...
7
votes
3answers
7k views
How can I add, remove, or swap jQuery validation rules from a page?
UPDATE:
I've come up with a solution to this which I've written as the accepted answer below.
Another option is to apply validation rules to all elements initially, add an ".invalid" class to elements ...
6
votes
3answers
112 views
Why should I use BBCode but not HTML in comment forms?
I'm writing a comment parsing function in PHP.
Since BBCode is not a real markup language, I'v never liked the writing style.
So I'm giving visitors the ability to use basic HTML code in comment ...
6
votes
4answers
453 views
Partial validation of ASP.NET MVC 3 Models
I have a very large 60+ question form that the user can start to fill, save at any point and leave it in hold. The form can be reloaded from the database and completed any time and then close it.
I ...
6
votes
1answer
494 views
Ajax Validation Using jquery?
I using jquery validation plugin.
In my form i need to check whether the nick name is already in use or not.
For that they are providing remote key to make ajax call. For me the ajax call is working
...
6
votes
5answers
423 views
Pause form submission for validation
I have some form, which uploads file in an iframe. I'd like to hold it's submission until I'll check if it's valid with ajax. How can I do this ? My code pauses the submission and returns validation ...
6
votes
3answers
144 views
Need advice for on creating a new “standard”/“language”
UPDATE: It was suggested in the comments that I create a wiki for this. I have done, you can find it here (should you wish to keep tabs on it and/or contribute).
http://vrs.tomelders.com
I've never ...
6
votes
3answers
1k views
Rails: how to require at least one field not to be blank
I know I can require a field by adding validates_presence_of :field to the model. However, how do I require at least one field to be mandatory, while not requiring any particular field?
thanks in ...
6
votes
1answer
923 views
JSF how to temporary disable validators to save draft
I have a pretty complex form with lots of inputs and validators. For the user it takes pretty long time (even over an hour) to complete that, so they would like to be able to save the draft data, ...
6
votes
3answers
18k views
jquery: validate that text field is numeric
I have simple issue -- I would like to check a field to see if its an integer if it is not blank. I'm not using any additional plugins, just jQuery. My code is as follows:
if($('#Field').val() ...
6
votes
4answers
214 views
jquery to php translator?
I've got a set of form validation rules that I wrote with the jquery validator plugin. Since I have to repeat the same validation on the server side, I thought it would be nice not to have to rewrite ...
6
votes
2answers
3k views
Enable/disable asp.net validator controls within a specific “ValidationGroup” with jQuery?
I know how to enable/disable individual validator controls on the client side using
ValidatorEnable(validator, false);
But how do you enable/disable all the validators within a ValidationGroup?
6
votes
8answers
4k views
Easiest Form validation library for PHP?
I need a simple php library which can be used to easily pass rules and field names to, and then validation could be easily performed. There should also be an easy way to retrieve the errors.
Any ...
6
votes
2answers
9k views
asp.net MVC - ValidationSummary not displaying
I have a strange problem whereby the ValidationSummary is not being displayed. However, the ValidationMessage's are being displayed. I've checked the output page source and it's not as though they are ...
6
votes
14answers
2k views
US Phone Number Verification
I have a website form that requires a US phone number input for follow up purposes, and this is very necessary in this case. I want try to eliminate users entering junk data 330-000-0000. I have seen ...
5
votes
1answer
40 views
Prevent comparevalidator from displaying error until button is clicked
I have a password textbox and confirm password textbox in which I use a comparevalidator to make sure that they are equal. If they aren't, I want the user to receive an error message that says they ...
5
votes
1answer
194 views
jQuery - making a floating element stick to another element
I'm using this jQuery form validation plugin. It shows field errors in a small floating div which is great.
The problem arises when the error div is shown and then the element it corresponds to moves ...
5
votes
1answer
112 views
Am I doing this wrong, or is there a bug in the CodeIgniter Form Validation library when using arrays as field names?
Here's my controller code to configure the rules:
// Previous address(es)
$this->form_validation->set_rules('prev_house_number[]', 'House Number', 'trim|alpha_numeric');
...
5
votes
3answers
122 views
Can I preventDefault(); inside of an ajax callback?
I'm doing some form validation, and I'm having trouble with what I'm trying to accomplish. I want to be able to validate my zip code on blur of the field, but also call the same function to validate ...
5
votes
2answers
215 views
Confused about whether return false; is needed or not
I'm very new to jQuery and I'm writing some validation logic on a form. With the help of this wonderful community I was able to understand how to post my forms with .ajax() and prevent a postback.
...
5
votes
4answers
211 views
Is it a good practice to throw an exception on Validate() methods or better to return bool value?
Is it recommended or not to throw exceptions from Validation methods like:
ValidateDates();
ValidateCargoDetails();
Apart from this : Is there a robust validation design pattern often used?
...