Tagged Questions

Validation is used to check data to make sure it fits whatever required specifications are set for it.

learn more… | top users | synonyms (3)

307
votes
36answers
59k views

How to use a regular expression to validate an email addresses?

Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is: ...
131
votes
13answers
12k views

XKCD SQL injection - please explain

Just looking at: (Source: http://xkcd.com/327/) What does this SQL do: Robert'); DROP TABLE STUDENTS; -- I know both ' and -- are for comments, but doesn't the word DROP get commented as well ...
108
votes
17answers
60k views

Validate email address in Javascript?

How can an email address be validated in Javascript? Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the ...
95
votes
25answers
98k views

A comprehensive regex for phone number validation

I'm trying to put together a comprehensive regex to validate phone numbers. Ideally it would handle international formats, but it must handle US formats, including the following: 1-234-567-8901 ...
54
votes
7answers
57k views

JQuery validate: How to add a rule for regular expression validation?

I am new to JQuery and am using the JQuery validation plugin. Great stuff! I want to migrate my existing ASP.NET solution to use JQuery instead of the ASP.NET validators. I am missing a replacement ...
46
votes
12answers
38k views

XML Schema (XSD) validation tool?

At the office we are currently writing an application that will generate XML files against a schema that we were given. We have the schema in an .XSD file. Are there tool or libraries that we can ...
45
votes
9answers
2k views

Google homepage not valid html

I was looking at the www.google.com in Firebug and noticed something odd: The Google logo is centered using a center tag. So I went and checked the page with the W3C validator and it found 48 errors. ...
41
votes
9answers
19k views

Cross field validation with Hibernate Validator (JSR 303)

Is there an implementation of (or third-party implementation for) cross field validation in Hibernate Validator 4.x? If not, what is the cleanest way to implement a cross field validator? As an ...
39
votes
16answers
3k views

What's the best way to implement field validation using ASP.NET MVC?

I am building a public website using ASP.NET, as part of the deliverable I need to do an Admin Site for data entry of the stuff shown in the public site, I was wondering what techniques or procedures ...
37
votes
6answers
14k views

Is there a (built-in) way in JavaScript to check if a string is a valid number?

I'm hoping there's something in the same conceptual space as the old VB6 IsNumeric() function?
36
votes
6answers
35k views

WPF Data Binding and Validation Rules Best Practices

I have a very simple WPF application in which I am using data binding to allow editing of some custom CLR objects. I am now wanting to put some input validation in when the user clicks save. However, ...
34
votes
13answers
43k views

jQuery: what is the best way to restrict “number”-only input for textboxes? (allow decimal points)

What is the best way to restrict "number"-only input for textboxes? I am looking for something that allows decimal points. I see a lot of examples. But have yet to decide which one to use.
33
votes
14answers
43k views

PHP validation/regex for URL

I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations. ...
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, ...
30
votes
11answers
22k views

In C# check that filename is *possibly* valid (not that it exists)

Is there a method in the System.IO namespace that checks the validity of a filename? Example: 'C:\foo\bar' would validate ':"~-*' would not a little trickier: 'X:\foo\bar' would validate is there is ...
30
votes
8answers
14k views

Detecting WPF Validation Errors

In WPF you can setup validation based on errors thrown in your Data Layer during Data Binding using the ExceptionValidationRule or DataErrorValidationRule. Suppose you had a bunch of controls set up ...
29
votes
4answers
5k views

Disable validation of HTML5 form elements

In my forms, I'd like to use the new HTML5 form types, for example <input type="url" /> (more info about the types here). The problem is that Chrome wants to be super helpful and validate these ...
28
votes
5answers
14k views

C# Sanitize File Name

I recently have been moving a bunch of MP3s from various locations into a repository. I had been constructing the new file names using the ID3 tags (thanks, TagLib-Sharp!), and I noticed that I was ...
28
votes
7answers
62k views

Validation of radio button group using jQuery validation plugin

How to perform validation for a radio button group (one radio button should be selected) using jQuery validation plugin?
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 ...
27
votes
6answers
1k views

Could a Malicious Hacker Alter a Hidden Post Variable

I know that a POST can be spoofed in terms of originating domain, but what about being able to change the variables of the hidden POST variables in my HTML? I am concerned that someone could alter the ...
27
votes
8answers
13k views

What's the best way to validate an XML file against an XSD file?

I'm generating xml files that need to conform to an xsd that was given to me. What's the best way to do this?
26
votes
4answers
2k views

How mature is the Microsoft Code Contracts framework?

Microsoft has recently put a release of their Code Contracts framework on DevLabs with a commercial license. We're interested on using them in our project (mostly C#, some C++/CLI) to gradually ...
25
votes
4answers
2k views

Should the MVVM ViewModel perform type conversion/validation?

We're just getting into MVVM in WPF. We have implemented our ViewModels with 'strongly typed' properties (int, double? etc.) that we bind to in the view. Type conversion works OK, mostly, and so ...
25
votes
3answers
9k views

How do I get the collection of Model State Errors in ASP.NET MVC?

How do I get the collection of errors in a view? I don't want to use the Html Helper Validation Summary or Validation Message. Instead I want to check for errors and if any display them in specific ...
25
votes
5answers
12k views

Validating with an XML schema in Python

Bounty: This is a 2 year old question. Is there a XSD validator for Python now? I have an XML file and an XML schema in another file and I'd like to validate that my XML file adheres to the ...
24
votes
5answers
1k views

A PHP and jQuery form creation and validation library available?

Original Question Is there a well tested and preferably mature library out there for creating forms in PHP with both client side (this is where the jQuery comes in) and server side validation? ...
24
votes
1answer
8k views

ASP.NET MVC 3 client-side validation with parameters

Following on from this post Perform client side validation for custom attribute I am trying to get my head around how to do this, passing additional parameters to the client-side script As I ...
24
votes
6answers
20k views

How do I validate a date in rails?

I want to be able to validate a date in my model in ruby on rails. However, the day, month and year values are already converted into an incorrect date by the time they reach my model. For example, ...
24
votes
6answers
13k views

How to validate IP address in Python?

What's the best way to validate that an IP entered by the user is valid? It comes in as a string.
24
votes
8answers
5k views

What is the best way to validate a credit card in PHP?

Given a credit card number and no additional information, what is the best way in PHP to determine whether or not it is a valid number? Right now I need something that will work with American ...
23
votes
1answer
8k views

Rails 3: Validate combined values

In Rails 2.x you can use validations to make sure you have a unique combined value like this: validates_uniqueness_of :husband, :scope => :wife In the corresponding migration it could look like ...
23
votes
4answers
11k views

Is it possible to add HTML5 validation to Visual Studio?

I'm working on a page using <canvas>, which is a HTML5 tag, in Visual Web Developer Express Edition 2008, and the validator in the HTML editor is telling me it's an invalid tag. That's because ...
22
votes
4answers
17k views

Kohana 3: Example of model with validation

I find examples and tutorials about models and about validation. And I places that say the validation (or most of it at least) should be in the model, which I agree with. But I can't any examples or ...
22
votes
3answers
6k views

maxlength attribute of a text box from the DataAnnotations StringLength in MVC2

I am working on an MVC2 application and want to set the maxlength attributes of the text inputs. I have already defined the stringlength attribute on the Model object using data annotations and it is ...
22
votes
8answers
51k views

How to check if inputs are empty with jQuery?

I have a form that I would like all fields to be filled in. If a field is clicked into and then not filled out, I would like to display a red background. Here is my code: $('#apply-form ...
22
votes
7answers
15k views

Which characters make a url invalid?

I am writting bbcode for my own forum (based on php); how to find out if it is an invalid url provided in the the [url] tag? Which characters make a url invalid?
22
votes
2answers
20k views

What is ModelState.IsValid valid for in ASP.NET MVC in NerdDinner?

On the NerdDinner example of Professional ASP.NET MVC 1.0 there's a method to create a new dinner as copied bellow (page 89 of the free NerdDinner version). There it checks ModelState.IsValid for ...
22
votes
6answers
46k views

Custom date format with jQuery validation plugin

How can I specify a custom date formate to be validated with the Validation Plugin for jQuery? thanks!
22
votes
32answers
2k views

Do you validate your websites? [closed]

I recently read a great resource by the Opera developers, entitled, "Introduction to The Web Standards Curriculum". I thought the articles put forth some good reasons why you should look at validating ...
21
votes
10answers
7k views

Mac App Store Receipt Validation Code?

Wondering if anyone has a tutorial or working code for the new Mac App Store's receipt validation? About the only references I've been able to find so far are Apple's stellar documentation on the ...
21
votes
6answers
5k views

Why do some major websites use invalid HTML?

I noticed that many websites, even Google and some banking sites, have poorly-written HTML with no quotes around the values of attributes, or using characters such as ampersands not escaped correctly ...
21
votes
6answers
8k views

What's the state of the art in email validation for Rails?

What are you using to validate users' email addresses, and why? I had been using validates_email_veracity_of which actually queries the MX servers. But that is full of fail for various reasons, ...
21
votes
6answers
28k views

C# How can I check if a URL exists/is valid?

I am making a simple program in visual c# 2005 that looks up a stock symbol on Yahoo! Finance, downloads the historical data, and then plots the price history for the specified ticker symbol. I know ...
21
votes
10answers
16k views

What is the best Java email address validation method?

What are the good email address validation libraries for Java? Are there any alternatives to commons validator?
21
votes
8answers
20k views

Easy way to test a URL for 404 in PHP?

I'm teaching myself some basic scraping and I've found that sometimes the URL's that I feed into my code return 404, which gums up all the rest of my code. So I need a test at the top of the code to ...
21
votes
21answers
7k views

Business Objects, Validation And Exceptions

I’ve been reading a few questions and answers regarding exceptions and their use. Seems to be a strong opinion that exceptions should be raised only for exception, unhandled cases. So that lead me to ...
20
votes
7answers
3k views

Unit tests on MVC validation

How can I test that my controller action is putting the correct errors in the ModelState when validating an entity, when I'm using DataAnnotation validation in MVC 2 Preview 1? Some code to ...
19
votes
6answers
3k views

Opengraph validation for HTML5

Is there any way to get facebook's crappy open graph meta tags to validate if my doctype is <!DOCTYPE html> (HTML5)? Other than facebook's opengraph meta tags, my document validates perfectly. ...
19
votes
9answers
4k views

Why doesn't Rails' “errors.full_messages” replace attribute and message variables?

Having a strange problem with a rails model I just created. Here are my validations: validates_presence_of :from_name, :message => 'Please provide a from name.' validates_presence_of :from_email ...

1 2 3 4 5 201