Input validation is the process of ensuring that a program operates on clean, correct and useful data.

learn more… | top users | synonyms

686
votes
28answers
575k views

Validate numbers in JavaScript - IsNumeric()

What's the cleanest, most effective way to validate decimal numbers in JavaScript? Bonus points for: Clarity. Solution should be clean and simple. Cross-platform. Test cases: 01. ...
2
votes
5answers
2k views

How to restrict a field to take only 4 numeric characters as input?

I wanted a text field to take only numbers ans some control keys and number should be exactly four digit long, not less not more. My validation code is function checkValidInput() { ...
0
votes
3answers
24 views

html5 validation regular expression

I only want alphanumeric, numbers, space, dash and underscore. I am using [\w\s-_]* But because I have allowed spaces, a space is allowed as input, in html5 how can i validate if only spaces are ...
1
vote
2answers
251 views

Input validation in an object oriented console application, where does it belong?

Design question... I've been tasked with creating a small console application in C# and want to follow best encapsulation practices. I have a UI layer, a Controller/Command Processor layer, a ...
0
votes
0answers
13 views

IM (Instant Message) Address Standard

Dear stack overflowers, I am not sure if this is the best place for this question, but I figured I'd give it a shot. I am currently working on an API that will allow consumers to read/write data ...
3
votes
2answers
1k views

StringLengthAttribute doesn't seem to be working

Here is my Test class with data annotations: class Test { [Required, StringLength(10)] public string MyProperty { get; set; } } Here is my console test program: class Program { static void ...
0
votes
4answers
49 views

I need a simple and elegant user validation technique for a c# console application

Coming from a procedural background, I'm running into a conceptual block while designing a menu-based console application and user input validation. My goal is to display a menu that launches other ...
1
vote
6answers
4k views

Basic Regular Expression for a 'generic' phone number

I need a regex (for use in an ASP .NET web site) to validate telephone numbers. Its supposed to be flexible and the only restrictions are: should be at least 9 digits no alphabetic letters can ...
0
votes
1answer
12 views

JSR 303 - Validate a field if it is not null

I have a form which is filled in, and some of the fields are options. I want to apply validations on the information that was filled in but the optional fields should be validated only if there was ...
19
votes
15answers
2k views

Why are Exceptions said to be so bad for Input Validation?

I understand that "Exceptions are for exceptional cases" [a], but besides just being repeated over and over again, I've never found an actual reason for this fact. Being that they halt execution, it ...
1
vote
1answer
30 views

Persisting text validators

I have a java app in which I can choose an object (let's say - a computer name) from a drop down list and then configure it. For each computer in the drop down list there are different configuration ...
1
vote
2answers
88 views

Validate number type inputs with jQuery

I am having a quite complex problem dealing with jQuery validation on optional fields that have the type="number" specified. What happens is that the browser (Chrome in this case) allows the user to ...
238
votes
40answers
342k views

How to allow only numeric (0-9) in HTML inputbox using jQuery?

I am creating a web page where I have an input text field in which I want to allow only numeric characters like (0,1,2,3,4,5...9) 0-9. How can I do this using jQuery?
0
votes
0answers
13 views

jQuery Time Entry - MMM:SS

I would like to create an INPUT box that assists the user in entering time values, however I would like the time values to be in the format of MMM:SS (i.e. Minutes can be anywhere from 0 to 999, and ...
1
vote
2answers
802 views

file upload validation

I should use the file uploads in a loop like, <form action="upload.php" method="post" enctype="multipart/form-data" name="form1" id="form1"onsubmit="return(validate());"> <?php ...
0
votes
0answers
37 views

zf2 formFilter regex howto

Using zendframework v2, I have run into a problem with a regex validator on a field created by the Form factory. All other fields (using the same pattern work without a problem). Any tips, or ...
0
votes
1answer
80 views

How to set error on dynamically added EditText without id?

I have a dynamically added EditTexts to my layout. They don't have id's. This EditTexts are all required and cannot be left empty. I have this function for validation: private boolean validate() { ...
0
votes
1answer
68 views

C# Troubleshooting the error provider — validating text box data input

everyone: I'm trying to validate data in text boxes on a form. This is the code I have for my validator, but it's not working when I clearly violate the constraints set in the code (tabbing out of ...
1
vote
1answer
123 views

Check is a specific form field is valid

I've been searching for a while now and haven't found a solution yet. I'm an ASP.NET and MVC4/Razor2 newbie, so I'm mostly editing the default project. Anyway, my issue is that I'm using Twitter ...
0
votes
1answer
28 views

what is ScaffoldColumn and RegularExpression

I am trying to learn MVC4 and i've come to this chapter called validation. I came to know about DataAnnotations and they have pretty neat attributes to do some server side validation. In book they ...
1
vote
2answers
44 views

How to make format validation function for input text with Jquery

I have form like this <p>Masukan Posisi Baru</p> <input type="text" id="nposisi"/></br> <button id="ok">OK</button> on "OK" click function i must validate that ...
0
votes
2answers
53 views

Javascript validation not performing as exepected

I have a problem with my JS validation code. When I submit the form and there are errors, the form shouldn't go any further. But yet, the code doesn't stop, instead it carries on to the next line, ...
7
votes
8answers
34k views

Batch File input validation - Make sure user entered an integer

I'm experimenting with a DOS batch file to perform a simple operation which requires the user to enter a non-negative integer. I'm using simple batch-file techniques to get user input: @ECHO OFF SET ...
0
votes
2answers
146 views

c# text box - Accept only floating point numbers inside a range

Whenever the user tries to enter a number not in the range [0, 24] it should show an error message. My code to accept floating point numbers is as follows. How can I modify it to add range validation? ...
-2
votes
1answer
27 views

Validate entering input field value should start with http://www.something.com [closed]

If somebody entering an input field, it should start with "http://www.something.com/". After ".com/" can type any extension. That is http://www.something.com/ is must. Anybody help this out?
0
votes
1answer
27 views

Javascript Input Value Not Changeable By User

I am relatively new to Javascript and having some trouble with changing values. Here is my Javascript: function printResults(results, numMeals){ calories=Math.round(results); protein= ...
0
votes
1answer
31 views

how to write a function using cin.fail() to ensure valid input in main?

Part of the requirement is that the function should not take any arguments. But the problem is that where can I store the cin input? I got an infinite loop here. double getValidDouble(){ string ...
2
votes
6answers
7k views

JavaScript - Validate Date

I have an HTML text field. I want to validate via JavaScript that the value entered is a valid date in the form of "MM/DD/YY" or "MM/D/YY" or "MM/DD/YYYY" or "MM/D/YYYY". Is there a function that does ...
-2
votes
1answer
57 views

JavaScript - check for numbers in a text field

It takes in the value of a textfield, Im trying to have it so if any numbers are in the field then il be able to stop it. function hasNumbers(input) { var length = input.length; var end = ...
2
votes
2answers
195 views

Angularjs prevent form submission when input validation fails

I'm writing a simple loginform using angularjs with some client side input validation to check that the user name and password is not empty and longer than three characters. See the below code: ...
0
votes
2answers
2k views

Disabling button on Validation error

I have couple of textboxes with custom validators: (I don't mind if "wrong" data is sent back to object (the property is string), I just need to prevent the functionality of a button if there is an ...
1
vote
1answer
45 views

Validate TextBox for Existing data in SQL

I am trying to validate some inputs for my database. User should not be able to save the same Title twice. I am using this code: private bool Exists() { var entity = ...
-1
votes
0answers
48 views

Deploying heuristics for detecting poor posts [closed]

I tried asking a similar question before and while that was a good step towards finding a solution, it did raise another two questions. In a Meta post, Jeff has talked about some heuristics and ...
1
vote
1answer
68 views

Validation of user input for quality [closed]

Taking Stackoverflow as an example, how can one one set out to eliminate bad questions from popping up? Questions that only contain: Spaces Gibberish Repetitive characters Combination of characters ...
1
vote
0answers
31 views

Best practice: throwing Exception or using Validator on User Input

Recently I've been into multiple arguments on whether to throw an exception on false User Input. Example: I'm trying to login though my account is not activated. As the programmer in an OO-language, ...
5
votes
1answer
899 views

DRY user-input validation (clientside, serverside) using JSON-schema

As part of a extensive test-case, I'm building an ajax-based CMS-like application which provides CRUD-functionality on various documenttypes, e.g: articles, tags, etc. on the server and client-side ...
1
vote
1answer
142 views

CSS style not being applied with input-validation-error in ASP.NET MVC 4.0

I am trying to alter the border of an input to a different color when that input throws a validation error in ASP.NET MVC. From what I can tell, I am ndoing it correctly, but alas it doesn't work. ...
0
votes
2answers
43 views

InputVerifiers not activating when programatically setting text

I have a swing application with JTextFields that I attach InputVerifiers to. I have valid defaults applied to the fields via the setText method, e.g. this.myField.setText("11"); But it seems that ...
0
votes
2answers
41 views

Making validation in GUI on textfield and setting the Textfield empty after validation

I am creating a simple GUI form in which I have two text filed one for name and other for phone number, I am trying to validate them and setting them empty on clicking on button. But On clicking on ...
-5
votes
3answers
215 views

Combine 4 short JavaScript form validations into one script

I don't know java but this looks easy for someone who does. I need to validate a contact form and I have these validation scripts but they don't run if I enter multiple instances of this script, works ...
0
votes
1answer
69 views

Textbox should allow only Integer. not decimal in vb.net

I want to allow only whole values and not decimal to the textbox in vb.net. Can anyone help me how to check validation on that.
0
votes
2answers
41 views

add name= required with js (eForm Modx)

I use Modx eForm for my form. My problem, I need to add :required to a couple of input fields but only when the checkbox is unchecked! I have fields like this: <input type="text" ...
0
votes
1answer
75 views

Validating check box and input

i have a form that includes several text inputs and checkboxes (the checkboxes comes from a DB), so... i know how to validate them separetly but i need to validate them together, the way i'm doing ...
1
vote
2answers
47 views

Basic Java - validating for interval decimals

I am struggling with this. I know how to write the code to determine if a number is between 1.0 and 10.0. Assume that the noOfJudges is a valid input (between 3 and 9) for(noOfJudges = 0; noOfJudges ...
-1
votes
0answers
18 views

edit text to accept URL

i have edit text and it has to accept URL only. changing input type to textUri not worked <EditText android:id="@+id/editText2" android:layout_width="match_parent" ...
0
votes
2answers
46 views

Regular expression allow commas

I need to allow only letters and some chars. I use this regex: ([a-zA-Z '-_]*)$") But this allows also , ; : . Why?
0
votes
1answer
38 views

Finding the subtype of an HTML form element using jQuery

I'm trying to use jQuery (version 1.4+) to determine the specific type of an input element on a form. I've already seen how to determine the element type using jQuery, as described in these ...
0
votes
2answers
464 views

Australian bank lookup via BSB, using Javascript

Is there a means of looking up a bank name & branch through Javascript? Perhaps an external service or an complete data-set that can be hosted internally and accessed through JSON?
0
votes
7answers
155 views

Validate user input for extra long words in textarea

I have a problem here with validating user's input in textarea. A user is suppose to enter his description in one of the textarea feild in form. But some people just put the random text like ...
0
votes
2answers
1k views

AUI in-built validator not working

I wrote some simple code in liferay to make use of the in-built aui validator, like so: <div id="addDiv"> <aui:form name="fmAdd" id="fmAdd" action="<%= addURL.toString() %>" ...

1 2 3 4 5 21