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

learn more… | top users | synonyms

0
votes
0answers
41 views

Generic InputVerifier for ranges

I'm trying to create a generic InputVerifier that checks to see if the data in the JComponent is within a specified range. For this, I made my generic type extend Comparable<> to ensure it could be ...
-8
votes
3answers
102 views

RegExp for validating PRICE [closed]

I am trying to validate a Price field: Should not allow: white spaces alphabets negative values Should allow: numbers commas decimals
0
votes
3answers
106 views

Regex - Empty field in form validation

I have an existing regex: /^(\d*)(\.(\d*))?$|^$/ How do i add/modify a check for empty field - (\s*) to this? - trying to learn regex, did a search but did not find apt resources.
-1
votes
1answer
40 views

How do I validate user entry as UTF8 in a text box in c#?

I'm getting text strings from a user, who may be copying and pasting from word, which contains characters that I can not use. I am currently saving out the results to a file I create as UTF8 so I ...
0
votes
1answer
71 views

Set tag attribute based on variable value with kendo binding

I create a variable list of input elements which are bound to a kendo MVVM. I have a kendo validation running over all my input elements (this is standard functionality), checking if the input is ...
0
votes
2answers
37 views

check validity of url using javascript

How to use javascript and check if a link is from a particular website or not? eg: If website=http://youtube.com/ajshdas if option= youtube <html> <select> ...
0
votes
1answer
70 views

Multiple Database Users per function

We are exploring how SQL inject risks can be limited by only allowing key functions to perform duties within our rails application. I am the security officier, not a full time rails person. The ...
0
votes
1answer
239 views

How to validate textbox's value

Here is the code. There are two different files 1 metadata.php <script> $(document).ready(function(){ $("#addAuthor").click(function(e){ e.preventDefault(); ...
1
vote
0answers
170 views

asp.net mvc 4 validation , comparing between two “System.TimeSpan” fields

I am woking on asp.net MVC4 project I would like to know how to add validation for "Time Span " I used Fluent Validation before ASP.NET MVC: LessThan and GreaterThan I have added [Required] public ...
0
votes
1answer
50 views

Cake PHP validation, change incoming $data

I got a problem with my cake validation. The user enters e.g. "20€" in a form field and I only want to get the number "20" with stripped out Euro-sign. But the validation methods only allow checking ...
0
votes
3answers
48 views

what does it mean to only allow expected input in php?

I'm reading a book on php security, and on input validation chapter there's a small section that talks about only allowing expected input. This is the code that they show: <?php $expected = ...
0
votes
1answer
49 views

Avoid future dates when validating birthdates

I'm trying to Birthdate in the form of "MM/DD/YYYY", and I want to consider "future" dates to be invalid. Here's my code so far: final Calendar c = Calendar.getInstance(); mDay = ...
0
votes
2answers
117 views

page refresh when using submit button

I using the html page with validation . But when i click the input submit button page was refreshed. But how to restrict the refresh the page . My sample code is: <div > ...
0
votes
1answer
84 views

Maxlength validation not including line break or list (spaces) pasted from word using Jquery?

I have the following Jquery validation limits text to 400 maxlength. It works great with plain text, but does not seem to work when pasting from word which contains formatting like line breaks, ...
5
votes
1answer
189 views

jQuery Validator at a “Page Level”

So I've already written a custom jQuery validator method. And it is tied to 1 or more individual dropdown lists. (I'm in asp.net, btw) jQuery.validator.addMethod("dropdownBoxHasItemSelected", ...
1
vote
5answers
88 views

User Input - Data Validation

I'm accepting a string value from the user via a text box in a form. It is then used in a query against a database table and although it is a string, I require the only characters entered to be whole ...
0
votes
1answer
41 views

Validating String User Entry

My issue is that I am attempting to make the user only able to enter "a, b, c or d". I would rather have it error out if they did not enter one of those four letters than the user only being able to ...
0
votes
0answers
25 views

throw new ArgumentOutOfRangeException and reset to prior value

Would like to throw new ArgumentOutOfRangeException and reset to prior get-private value? Cannot use UpdateSourceTrigger="PropertyChanged" as record value changes to an audit log and only want to ...
3
votes
2answers
97 views

Regex for files path

I'm trying to validate the path of an uploaded file in php, that must be validated with regular expressions and not with native functions. The path that I'm getting is: C:\xampp\tmp\php33DB.tmp ...
0
votes
1answer
201 views

Jquery validate input to eight integers and two decimals

I've tried this code but I guess that I have an error with my regex since it's always true. Besides the regex, I also have a problem with keypress since I'm testing the value before adding the new ...
2
votes
4answers
219 views

How to use onClick ONLY if email input field is valid?

Here's code: <input id="subscribe-email" type="email" placeholder="john.doe@example.com" /> <button type="submit" id="subscribe-submit" onClick="javascript:omgemailgone();" ...
0
votes
1answer
78 views

Data Validation on multiple date fields

I want to validate two fields, that are type of Date (exactly TimePicker) at the same time. I found my solution here: Compare two fields that use same class BUT.. I'm need to have TimePicker control ...
0
votes
1answer
323 views

Required Validation Error Message is not getting displayed in jquery popup modal form

I have used ComponentModel.DataAnnotations [Required] attribute for validation messages. The message is not getting displayed in my form. However, the RegularExpression validation and Range validation ...
2
votes
1answer
62 views

How to determine if any fields associated with an activity have had their errors set?

I am performing some input validation in an onClickListener(). While I'm okay with my validation methods I'm concerned about the way I am determining if any of the validated inputs have errors. For ...
1
vote
0answers
78 views

EF 5 Code First Windows Form application: how to handle data validation?

I'm trying to figure out what's the best approach to validate user input data in a Windows Form (Code First) application. I know how to add Data Annotation and how to use them in an MVC application, ...
-1
votes
1answer
80 views

Required attribute and validation groups

I have several textboxes on the form that are marked with required="required" attribute (html5). There are two buttons. The first button should cause validation, the second should not. ...
1
vote
1answer
35 views

Spring validation in multiple forms

Can we display error messages in one jsp but in 2 different forms.I am validating my bean using spring validation.Its working fine but if there is an error in the binding results then I am able to ...
1
vote
1answer
112 views

jQuery Tip Calculator - Formulas with Variables Based on TextArea Inputs

I found a few threads that were helpful, but nothing answered my question directly, so here's the specific issue: To hone my limited jQuery skills I am creating a Split the Bill/Tip Calculator that ...
0
votes
1answer
93 views

C number guessing game with isdigit() verification

I'm working on a challenge problem from my textbook where I'm supposed to generate a random number between 1-10, let the user guess, and validate their response with isdigit(). I (mostly) got the ...
5
votes
3answers
208 views

validation form in table mode with javascript

i made my form in table mode like this: <form name="register" method="post" action="#" onSubmit="return validasi()"> <table width="507" border="0"> <h1 ...
0
votes
1answer
368 views

Laravel: Form validation string-length error messages cause exception

When trying to implement Laravel's length based validation 'password' => array( 'required', 'alpha_dash', 'Min:7' ) and outputting error messages in my view {{ ...
0
votes
1answer
45 views

how to know the textfield has failed the validation in c#

I am new to c# and asp.net coding. I have created a sample page which has a input box and submit button. I have added regular expression so that the input box takes only numbers. This is working ...
2
votes
2answers
95 views

skip single minus or plus signs among integer input

Recently I needed a simple program to sum all integers occurring on standard input, one integer per line. The input happened to contain some unset lines, containing a single minus ('-') sign, and also ...
1
vote
0answers
269 views

Server side validation in Asp.net MVC4

I am trying to build a website using ASP.Net MVC, where in I need to dynamically display N number of controls of different kind, and validate them. My approach is to add them to a partial view using ...
0
votes
2answers
42 views

onKey and exceptions

I'm building an Android application and I'm facing 2 problems. I'm currently using the onKey method to parse a textbox to fetch the user typed data. This is working fine but if the user choose to let ...
4
votes
1answer
1k views

Display error message in jQuery popup or in alert in MVC 4

Am using DataAnnotation for validation, I want to show the error message(Data annotation) in a pop up (dialog/alert) instead of showing it on view.... I have implemented the code using this link.. ...
0
votes
1answer
82 views

Using header in PHP with hidden input fields

I am creating a validation function in a php-file for my HTML FORM INPUT fields. The function should jump back to the form if it is not filled out correctly and jump to a new page if it is filled out ...
3
votes
6answers
199 views

LiveCode field level input validation

How can I restrict a users input to be only numeric (allowing decimals) when typing into certain fields in a desktop application? ~Roger
1
vote
2answers
130 views

How to check the end of line using Scanner?

I have searched similar questions, but none helped. Consider a file : " hi how are you? where were you?" If I use next(), it wont tell me when i have reached ...
0
votes
1answer
92 views

How do check if user-input path is correct?

I need to be prove about user-input path. Coz when user give not folder path but file path. Program "fall down". I understand that this is a bug but how to be ensure about user path correct. Code: ...
-1
votes
1answer
766 views

Checking if username already exists within the databasae [closed]

i am trying to check against the database table "user" to see if the "username" exists so that the same username cannot be created again. I want this to be a validator so if the username exists the ...
0
votes
1answer
71 views

HTML5 valide re-entered values

I have just used the HTML5 pattern attribute for the first time on a registration form client-side validation. It is working well and I plan to use it for live code. In my registration form I have a ...
0
votes
1answer
155 views

JSF 2.1 Validation of two inputs at the same time using Ajax

I have a problem with validation of two inputs at the same time. In my validator I need data from both: <h:selectOneListbox> <h:inputText> The idea is to check if an address is ...
0
votes
2answers
670 views

MVC4 Form Input Validation - Customising the error span

I have a form with several inputs using Html.TextBoxFor and each input has a ValidationMessageFor which gets it's error message from the ViewModel attributes. For this example, we'll pretend there's ...
0
votes
0answers
34 views

validating ip addresss in datastage

I have a source file that contained two fields like IP_ADDRESS and USER_NAME.Now i wan to check wheather the ip address is correct or not before loading it to the datawarehouse using DATASTAGE.Can any ...
0
votes
3answers
86 views

Failed validation on 'Id' field

I have a simple MVC model like so: public class SomeClass { public int Id { get; set; } [Required(ErrorMessage = "Please provide a name for the blah blah blah")] public string Name { ...
0
votes
1answer
37 views

db-driven / programmatic validation asp.net mvc?

I want to create a system where users can create forms through a UI, and the list of fields gets stored in in the database. The user can then choose validations for the form, and those get stored in ...
0
votes
1answer
79 views

jquery .val() outputs default input field value from html not user entered one

I've a problem... I'm trying to grab all input field data for validation, but .val() returns default value from html rather than what user inputed. Maybe it is because I've this script inside ...
0
votes
1answer
68 views

how can I correct this JavaScript adding function?

I have a form which takes six inputs (there are more but only these matter for now) original fare original tax new fare new tax fee number of guests when "Calculate" is pressed I use ...
0
votes
0answers
40 views

Data-cleansing trigger help for MySQL, please

I am extremely new to the MySQL environment and databases in general. I am currently working on a project for work and am having a great deal of difficulty trying create a MySQL trigger. I'm sure ...

1 2 3 4 5 21