Input validation is the process of ensuring that a program operates on clean, correct and useful data.
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
2answers
151 views
How to handle a Validation error (in p:dataTable) while doing ajax command
I have a <p:dataTable editable="true"> which contains a <p:inputText> that have <f:validateLength/>My question is that i want to handle the validation error of this ...
0
votes
0answers
75 views
Validation of simplemembership don't work MVC 4
I using C# with MVC 4. I am trying to create an user at the simplemembership table, and on purpose the username already exists. When I submit the form, the validation dont work(red border) at the ...
-2
votes
1answer
30 views
HTML text input, no numeric
I have an HTML5 text field for given name (first name).
<input name="name" id="name" autocompletetype="given-name" type="text" alt="" maxlength="16" required/>
Some users put password here. ...
0
votes
2answers
88 views
Check if a string contains nothing but an URL in PHP
I am wondering if this is a proper way to check, if a string contains nothing but an URL:
if (stripos($string, 'http') == 0 && !preg_match('/\s/',$string)) {
do_something();
}
stripos() ...
1
vote
3answers
779 views
Custom Email Validation on ASP.NET C# [duplicate]
I'm doing a registration form where people can register, in that I will be asking for thier email address's If i could put a regex validation that captures any other emails
example:
xxx@gmail.com, ...
0
votes
0answers
88 views
RangeValidator for DATETIME
As I know that RangeValidator validates DATE type only but I want to validate time also.
So, is there any way to validate DATETIME using this validator or I am supposed to use java script or C# coding ...
1
vote
1answer
141 views
Validation Rule not updating correctly with 2 validation rules
I Have looked through some posts regarding Validation Rules but havn't come across the problem I am experiencing.
I am using a Validation Rule for a Textbox in a WPF Window. I have two checks, one ...
0
votes
4answers
265 views
jQuery compare select field values with an array before submitting form
I'm new to jQuery but here is what I'm trying to do.
I have a form with an multi select field named City and Zip,
I'm trying to get the values of this select field and compare it against a list of ...
0
votes
0answers
14 views
Need Advice on DBContext Generator
I've been working on a DLL library using Entity Framework 4 and DBContext Generator - Database first approach. I found out that there's no validation for the fields when using Database First approach. ...
0
votes
0answers
160 views
Validate 2 inputs against existing MySQL database table to pass registration
I am using PHP but I have read to use AJAX which I am not to familiar with. Basically what I need to know is how to validate two text inputs to query against a existing database table. The table ...
0
votes
1answer
54 views
What is the best practice for method parameter validation in a library? [closed]
I develop a game library in javascript, containing many classes.
I hesitate on the behavior that i should follow concerning method parameter validation:
Should I check the validity of parameters ...
0
votes
1answer
9 views
Form Analyzation and Suggestions
I was filling out a form on uSell.com to ship out an old phone and when I entered my address, a dialog box popped up telling me what I entered along with their suggestion of what to change it to. I ...
0
votes
0answers
35 views
What is the minimum length of a valid international phone number?
I need to validate user input of an international phone number. According to E.164, the maximum length is 15 digits, but I was unable to find any information about the minimum. I consider digits only, ...
0
votes
0answers
17 views
Upload on WORD/PDF/TEXT file to server Validatation ASP.NET MVC [duplicate]
I want to validate if the file uploaded is really a PDF or WORD (doc or docx) file or not.
I am using the following validation:
public class ValidateFileAttribute : RequiredAttribute
{
public ...
0
votes
1answer
73 views
Standard list of values for a contact's name prefix dropdown box?
Is there a list of what values would be expected to be available in a list of name prefixes when filling out a contact form on a website?
For example: Dr., Mr., Ms., etc.
Also, is giving a choice ...
0
votes
3answers
438 views
JavaScript mask for Brasil phone number
Currently I'm using jquery.maskedinput for verious mask formats, but it's not working for phone numbers.
In Brasil we used to have all numbers in the format (99)9999-9999. But lately, in a few ...
0
votes
2answers
76 views
C++ Array Input and Exit Validation
I'm not sure what's wrong with my approach to inputting an unlimited amount of item prices. However, the biggest concern is when I press zero (the way it needs to terminate with), the inputting does ...
1
vote
1answer
76 views
Screen reader and error messages
In general, how do you display client-side validation messages on a web page to make it easy to read out? Alerts are read out nice but are forbidden in the current design.
0
votes
1answer
214 views
display validation errors using @html.validationmessagefor
I'm trying to use @Html.ValidationMessageFor() for displaying errors in MVC,
and I'm trying to do something like: @Html.ValidationMessageFor(@ViewBag.Price) but I get syntax errors.
I want validation ...
1
vote
1answer
140 views
Android : Saripaar Validation Library. Need to set error message from strings.xml
I am using the the Saripaar validation library https://github.com/ragunathjawahar/android-saripaar to validate one of the forms.
The library is pretty useful as it avoids a lot of boilerplate code for ...
0
votes
2answers
107 views
Validating input values with an if/else statement in C++
So I've looked around but I'm apparently either not looking in the right place or I'm misunderstanding something.
The directions given are that the program can only accept values between 2.0 and 5.0 ...
0
votes
3answers
291 views
Validation of radio buttons with Javascript
I've combed a ton of the pages on here, and still am incapable to get my explicit validator to work. Basically, when the submit button is clicked, I want the script to verify a radio is checked, if ...
0
votes
1answer
173 views
JQGrid remove error model popup
I am using JQGrid edit rules to validated data in JQGrid cell. Now, it is showing model pop-up if error in input data and not allowed to add row. I want all functionality other than model popup. I ...
0
votes
2answers
43 views
How to handle user input that is too long?
It is common to check if entered password is at least # characters long, or if user input is not left empty. However, I see a few websites testing if user input is not unusually long.
Typical ...
0
votes
1answer
473 views
Primefaces: required field message overrides <p:dialog/> message
I have a field that has a required attribute. When I press the Accept button to save some data without entering any value in the field, an error message is displayed. So far so good.
But, if right ...
0
votes
2answers
68 views
How to validate two input - jquery
i have few set of questions, each set of question contains 2 input field.
<!--Question Set-->
<tr class="options_row">
<td>
...
0
votes
1answer
218 views
Best approach to add input validation on a mvc form?
I need the following validation on several input fields:
01 - Unicode String. No line breaks or tabs. DATA_MAX_LENGTH applies.
02 - Unicode Memo. Line breaks permitted. No tabs. DATA_MAX_LENGTH ...
0
votes
0answers
29 views
Validation through AOP in spring
I have an aspect class which gets the username and password from the controller. Now I need to perform validation in the aspect class using the Username, password and return the result accordingly.
...
0
votes
2answers
545 views
Java data validation with while loops
This applicaiton validates that the user is entering the correct data. I have about 95% of this done but I can not figure out the Continue? (y/n) part. If you hit anything but y or n (or if you leave ...
2
votes
1answer
49 views
Multiple backgrounds & :valid - shortest solution / DRY solution?
I have a form with some input-fields. These input fields have a gradient as background assigned, like so:
input {
background: #00b7ea;
background: ...
1
vote
4answers
266 views
Wiring a while loop with a continue option in java
I am working on a loan calculator with data validation. I have written everything and good to go. The only thing I cannot figure out is how to write a while loop in where the user is asked "Continue ...
1
vote
3answers
216 views
Allow characters storage on JTextField only if are numbers
I want to filter the key that are pressed on JTextField.
I want that only numbers are allowed, and if other character are pressed it remove it or don't allow the storage on the text field.
I'm ...
0
votes
4answers
67 views
Input validation not functioning
I am trying to parse input from a file to represent a standard deck of cards (i.e. 2C represents the two of clubs). However, my solution is not working as expected, and is declaring all inputs to be ...
3
votes
1answer
206 views
Wpf XmlDataProvider Validation based on XSD schema
I am writing a c# (3.5 or 4 if I find a reason for it) WPF application which loads XAML fragments on the fly using XamlReader to display a customisable UI. This UI is bound to a XmlDataProvider prior ...
-1
votes
1answer
181 views
Cakephp form checkbox validation error not shown, but input error
i have a form with required fields, one field is a checkbox. All validation errors will be shown, but no error from checkbox field. I installed DebugKit-Plugin and see, that there will be a validation ...
-3
votes
2answers
234 views
regex to allow alphanumeric characters on both sides of an equal sign?
I need a regular expression to validate whether text entered in an asp.net textbox has the following format
A-za-z123456789 /s = /s A-za-z123456789
Regular expression explained:
one or more ...
1
vote
2answers
236 views
How to resolve NumberFormatException: Empty string?
When I run this program i get the error Exception in thread "main" java.lang.NumberFormatException: empty String. Is it possible to make this work by throwing the exception some how or must I use a ...
0
votes
1answer
92 views
Validate Drop down asp.net
I have following drop down
<li><span>State: <asp:DropDownList ID="ddlAppState" runat="server">
</asp:DropDownList></span></li>
...
3
votes
1answer
72 views
Can input written to a file be maliciously tampered?
Uber simple example to illustrate the point:
$message = $_POST['message'];
$fp = fopen("log.txt", "a");
fwrite($fp, $message);
fclose($fp);
Should I be sanitizing user input for the ...
1
vote
4answers
325 views
How to start loop over after invalid input validation?
I'm writing a program that takes user input of five students and four test scores per student and puts them into arrays. It then averages the student's scores and gives a letter grade. The program ...
5
votes
2answers
133 views
Is there a smart way to validate function input in Clojure?
I'm writing a simple DiceRoller application and I've created the primary function, however I'm wondering if there is a "smart" way to validate function inputs in Clojure rather than using branching ...
1
vote
1answer
83 views
Invalid data added/saved (addPerson)
Scanner sc = new Scanner(System.in);
Boolean valid = true;
do{
valid = true;
//get first name input and valid
System.out.print("Enter your First Name > ");
String firstName = ...
3
votes
3answers
254 views
Set the order of asp.net validator
I m using 3 validator to validate the text box but all get trigger when invalid value is enter in the textbox but i want to these validator sholud work in a particular order so that user resolve these ...
0
votes
1answer
91 views
Can't access Model attributes during validation
I'm using Spring 3.1 and have web pages using validation. The field-level validation, and the display of errors, works OK. My problem is with Model attributes not being available during the ...
0
votes
1answer
62 views
My javascript validation is displaying error
I am trying to validate email and password with javascript in php .
but it is showing me error :-
{"error": "Shell form does not validate{'html_initial_name': u'initial-js_lib', 'form': ...
-1
votes
1answer
76 views
Input Validation - Regex to match scripts
What are the Regex expressions that I would need to test a string against in order to make sure it doesn't contain any Javascript?
I'm using this article as a starting point.
Code in blocks:
...
-2
votes
1answer
105 views
Validation in Java [closed]
How can I make user name and password (other fields like name, lastname) validator for registration in java? The best way will be probably using some regexp. The allowed characters should be probably ...
1
vote
2answers
78 views
jQuery function to run after another function is valid
I am wanting to check if the email field is already stored within the database after the email address is valid. I have both functions working perfectly, how ever, both at the same time. I'm wanting ...
1
vote
1answer
182 views
Devexpress Navigation Menu makes screen to freez
I've a devexpress Navigation menu item that opens a data entry form (user control). The user control has validation rules that compel users not to leave textboxs blank. And, it works pretty good so ...




