Tagged Questions
The input-validation tag has no wiki summary.
210
votes
18answers
255k 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. ...
63
votes
31answers
140k 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?
21
votes
2answers
3k views
Display input validation errors in popup
I want to show all my validation error's of EdiText fields in a popup as shown in below image:
As far as I know Android has drawables:
1) popup_inline_error.9.png
2) ...
18
votes
14answers
1k 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 ...
17
votes
8answers
18k views
iPhone how to check that a string is numeric only
How do I validate the string input from a UITextField? I want to check that the string is numeric, including decimal points.
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 ...
13
votes
3answers
351 views
Should Password fields retain their values if a form does not pass validation?
I have a typical sign-up form with two password fields.
<form>
<%= Html.TextBox("Email", null) %>
<%= Html.Password("password", null) %>
<%= ...
12
votes
2answers
12k views
Reset an input control's border color (HTML/Javascript)
Does anyone know how to reset the border color of an input control once you have modified it using javascript? Useful for validation by highlighting fields that have incorrect or invalid data in them ...
11
votes
8answers
2k views
How much input validation should I be doing on my python functions/methods?
I'm interested in how much up front validation people do in the Python they write.
Here are a few examples of simple functions:
def factorial(num):
"""Computes the factorial of num."""
def ...
10
votes
6answers
14k views
How to get old Value with onchange() event in text box
I have a text Box and a Value poplulated in it when page loads.
Now If user chanegs any thing in text box, then I want to get the Changed Value(New Value) and Old Value
but when I do ELEMENT.value ...
8
votes
2answers
126 views
How to programmatically display HTML5 client-side validation error bubbles?
I'm trying to use HTML5 client-side validation outside a form/submit context, but cannot see how to display the validation error bubbles. Consider the following:
<input type="text" id="input" ...
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
2answers
460 views
How to test if a string contains gibberish in PHP?
I am making a registering form for a website and because I'm sure everyone
is going to enter some gibberish in the Secret Answer's input (I do that myself),
I would like to programmatically test that ...
8
votes
2answers
179 views
How do I exploit “EXEC @sql”?
My co-worker is being unsafe with his code and is allowing a user to upload an SQL file to be run on the server.
He strips out any key words in the file such as "EXEC", "DROP", "UPDATE", "INSERT", ...
8
votes
6answers
2k views
How can i turn off ASP.NET required field validator “lost focus” behaviour
I have some code where I need two separate required field validators for one control, both in separate validation groups which are then validated by two separate buttons.
This approach works well ...
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 ...
7
votes
6answers
470 views
Best practices for input validation in ASP.NET?
What is the common practice of input validation? In other words do you check for input validation on client-side, on server-side or on both sides?
Also, if performance is crucial to me, would just ...
7
votes
6answers
3k views
Determine if a character is alphabetic
Having problems with this.
Let's say I have a parameter composed of a single character and I only want to accept alphabetic characters. How will I determine that the parameter passed is a member of ...
6
votes
5answers
81 views
Best way to get a user to input a correctly-formatted URL?
I am creating a dialog using MVVM which prompts the user to type in an http:// URL to a KML file. The "OK" button needs to be enabled when the URL is in the correct format, and it needs to be disabled ...
6
votes
2answers
302 views
NoSQL Injection? (PHP->phpcassa->Cassandra)
Anyone familiar enough with the Cassandra engine (via PHP using phpcassa lib) to know offhand whether there's a corollary to the sql-injection attack vector? If so, has anyone taken a stab at ...
6
votes
3answers
258 views
A simple question about cin
this might be a very simple question.
In the following loop, if we type characters as the cin input instead of numbers which are expected, then it goes into infinite loop. Could anyone please explain ...
6
votes
3answers
359 views
CouchDB - Figuring out database security
CouchDB offers validation prior to allowing an object/row to be inserted into the database. This make sure that if you have a public facing couch application, you're database won't be filled with junk ...
6
votes
5answers
311 views
Detect SQL Injection
I came to a company that already has a fully grown project... but coders that worked here before me didn't follow conventions and didn't use parametrized SQL queries... as a result there is over 1000 ...
6
votes
1answer
919 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
2answers
214 views
Validation of user input or ���������
We're letting users search a database from a single text input and I'm having difficulties in filtering some user supplied strings.
For example, if the user submits:
��������� lcd SONY
(Note the ...
6
votes
3answers
558 views
Should i sanitize markdown?
For my post entity i store both HTML and MARKDOWN in database (HTML is converted from MARKDOWN). HTML is for rendering on page and MARKDOWN for editing ability (with WMD). I sanitize HTML before ...
6
votes
8answers
4k views
What is the best way to do input validation in C++ with cin?
My brother recently started learning C++. He told me a problem he encountered while trying to validate input in a simple program. He had a text menu where the user entered an integer choice, if they ...
5
votes
3answers
107 views
HTML5: number input type that takes only integers?
I'm using the jQuery Tools Validator which implements HTML5 validations through jQuery. It's been working great so far except for one thing. In the HTML5 specification, the input type "number" can ...
5
votes
4answers
167 views
Preventing SQL Injection on ASP.NET Web Application
I am new to C# and ASP.NET.
I am using VS2005 C# and SQL Server 2005 and have done some research on preventing SQL injections
I have a couple of functions in my server-side web application which I ...
5
votes
2answers
197 views
JTextField limit input to certains chars only
i'd like to create JTextField with input characters limited to someting like
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVXYWZZ0123456789+&@#/%?=~_-|!:,.;"
so i tried overriding
public class ...
5
votes
8answers
290 views
How can I check a input field exists in the form when I submit it to the server?
How can I check a input field exists in the form when I submit it to the server?
For instance, I want to check whether a check box named 'mem_follow' exists or not in the form.
Or do I have to ...
5
votes
4answers
132 views
Catch exception, validate input or both?
I'm working on obtaining RSS feeds like so:
SyndicationFeed rss = SyndicationFeed.Load(XmlReader.Create(textBox1.Text));
XmlReader.Create() in this case can throw up to 4 exceptions related to ...
5
votes
1answer
326 views
Is there a Java implementation of the HTML5 input email validation?
I'd like to use the new <input type="email" /> element. I'd like to have Java code that implements the same validation on the server that happens in the browser.
The HTML5 spec defines email ...
5
votes
1answer
189 views
Best practices for user physical location (input, data type, display and validation)
I'm building a web application that requires users to provide their location (similar to the way Facebook does it). I'm not sure on the best way to implement this. I require the ability to search ...
5
votes
1answer
609 views
WPF Validation: Clearing all validation errors
I have a WPF UserControl with many other controls inside of it.
TextBoxes are among these.
Every TextBox has its own validation:
<TextBox>
<TextBox.Text>
<Binding ...
5
votes
4answers
556 views
Should I duplicate validation in my MVC layer and Service layer?
I'm feeling a little conflicted at the moment. I have a web application using Stripes for an MVC framework and Spring/Hibernate for the back-end. I have an account registration method in my MVC layer ...
5
votes
2answers
303 views
User input filtering - do I need to filter HTML?
Note: I take care of SQL injection and output escaping elsewhere - this question is about input filtering only, thanks.
I'm in the middle of refactoring my user input filtering functions. Before ...
5
votes
1answer
728 views
In C++, can you manually set the failbit of a stream? How?
I am overloading the input stream operator for use with a Time class and would like to manually set the failbit of the input stream if the input doesn't match my expected time format (hh:mm). Can this ...
5
votes
6answers
279 views
Should you code to protect your application from bad coders?
It's no question that we should code our applications to protect themselves against malicious, curious, and/or careless users, but what about from current and/or future colleagues?
For example, I'm ...
5
votes
3answers
677 views
quiet bot detection and filtering in ASP.NET MVC
I'm setting up an e-mail form for scientific journal articles. I need to be able to check for bots and filter them quietly. The site run ASP.NET MVC. I'd like to avoid CAPTCHA. Any ideas?
5
votes
3answers
5k views
How best to sanitize input in Java webapp
We use jsp, servlets, beans with mysql database. We don't want to restrict the characters entered by users on form fields. So how do I sanitize the input and how to make sure the output is not changed ...
5
votes
4answers
5k views
Need a regex to match a variable length string of numbers that can't be all zeros
I need to validate an input on a form. I'm expecting the input to be a number between 1 to 19 digits. The input can also start with zeros. However, I want to validate that they are not all zeros. I've ...
4
votes
2answers
71 views
What is the easiest way to determine whether `<input type=“email”..` (for instance) is supported in current browser?
With HTML5, the following markup is just enough to get the browser handle input validation for one.
It will verify the input is matching an email address format as well as that it is actually ...
4
votes
3answers
409 views
Intermittent error with CompareValidator - ValueToCompare property is “”
I have a page with a CompareValidator on it:
<asp:textbox id="txtResponseDate" runat="server" />
<asp:requiredfieldvalidator id="rfvResponseDate" runat="server"
...
4
votes
2answers
457 views
Count non-empty input field[]?
With jQuery how do I count how many fields of my array field[] are not empty ?
Sample of the input field
<input type="file" name="arquivo[]" id="arquivo">
I was trying to make something up ...
4
votes
4answers
124 views
About software design: Where I must check parameters?
Imagine I have an application that request to the user a name, a category list. When user click on save button, application will save name and category to a database.
I have a layer that get name and ...
4
votes
1answer
163 views
How many sub-domain are allowed for an Email Id?
How many subdomains are possible for an Email address?
For Example: something@something.co.uk.uk
like that....
4
votes
4answers
390 views
Matlab - input validation
What is a good way to validate an input or exit the program with an error message altoghether?
For example if I take an input such as
Length = input('\nEnter a length in feet: ');
How can I check ...
4
votes
1answer
472 views
How to restrict special symbols like % in textbox in wpf?
I would like to develop a textbox which restricts special symbols like %. I used textbox's keydown event to restrict '%' . I already used the code as
if(Keyboard.Modifiers == ModifierKeys.Shift ...
4
votes
1answer
330 views
Customization of wrong format validation error messages in Silverlight & Wpf
Error messages associated with Validation attributes such as [Required] can be easily customized and localized either by providing directly the message string or a resource containing the message.
...