Tagged Questions
1
vote
0answers
32 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, ...
1
vote
5answers
91 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 ...
1
vote
1answer
119 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
97 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:
...
0
votes
1answer
78 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 ...
1
vote
2answers
164 views
Looping back to User Input Validation C
I have the following method to generate a string that has to meet requirements,but I need some sort of clause to loop back to user input if a validation requirement is not met.I know in Java there is ...
0
votes
0answers
111 views
input text field value returning false
I have and html form that I validate using ajax. However, when I want to retrieve the values for state and city, they always return false. I tried everything but I don't know whats going on since ...
1
vote
1answer
221 views
Codeigniter removes inline style from html input
Taking a look at the following code:
$this->input->post('title', FALSE);
I have manually disabled XSS filtering.
Now lets see some examples:
<p ...
0
votes
2answers
42 views
How much is too much restriction?
I have a function that sets what key a song is in for a search query. It goes from c..b or 0..11 and I have it to where if the given "key" falls outside the allowed range, it just reverts to NULL. ...
1
vote
1answer
15 views
Proper library behavior with erroneous user input
Suppose I'm writing a library that stores a sequence of doubles to a file in a certain format. The format requires that the doubles are monotonically increasing.
Now, some users won't read the manual ...
0
votes
1answer
162 views
Scala Swing: verifying Integer input forTextfield
I have a TextField that I wish to get an integer input from. In the previous c# Wpf version, I subscribe to the PreviewTextInput as follows:
private void PrevInp(object sender, ...
0
votes
3answers
303 views
Input validation phone number
I am trying to find a way to make field constraints for input of a phone number.
Example:
France (country code 33) local number 0142687984 should be input as
33142687984
and not for example
00331 ...
0
votes
1answer
81 views
How to check user input for repeating text
When there is a character amount requirement. Some users may fill in the remaining quota with garbage text that repeats. I want to set the amount of repeats to allow.
1
vote
2answers
397 views
MatLab: Error handling of integer input
How do I in MatLab catch the error that occours when the user enters letters and other things that aren't numbers in the input:
width = input('Enter a width: ');
I have played around for a while ...
0
votes
2answers
244 views
Ignore some javascript validations MVC3
I'm using MVC3 and I have a model like this:
public class Foo
{
[Required]
[Range(0.01, 99.99)]
public double? f1{ get; set; }
}
And I want to ugnore javascript range validation, but keep ...
4
votes
4answers
5k views
Validate Numeric Input to UITextField as the User Enters Input
First, I setup up the keyboard for the UITextField to use the number with decimal style. So the user can only enter numbers and a decimal.
What I want to do is validate the input as the user enters ...
1
vote
2answers
1k views
Getting values from array created with getElementsByClassName()
I'm trying to create a function that will check to make sure all the input a user provided is numeric.
function wholeFormValid() {
var inp = document.getElementsByClassName('userInput');
...
2
votes
2answers
2k views
Allow only selected charcters based on regex in an EditText
I want to allow users only to type certain characters based on the a regex in my android applications. How do I achieve it?
3
votes
5answers
3k views
How to prevent non-numeric input in VB.NET?
I'm working on a program that requires the user to input an integer. How do I prevent the user from entering a non-numeric value? I tried using the IsNumeric() function but I get an error before I can ...
3
votes
2answers
424 views
How to determine when input is alphabetic?
I been trying to solve this one for a while and can't seem to make it work right.. here is my current work
while True:
guess = int(raw_input('What is your number?'))
if 100 < guess or ...
4
votes
3answers
279 views
Output or Input filtering?
Output or Input filtering?
I constantly see people writing "filter you inputs", "sanitize your inputs", don't trust user data, but I only agree with the last one, where I consider trusting any ...
2
votes
4answers
771 views
HTML input readonly security risk?
Is it safe to rely on the data of a html input field set to readonly? What is the purpose of a readonly field?
I know the disabled fields are not pushed to $_POST whereas readonly are? ...
1
vote
2answers
417 views
Creating basic PHP script to add lines to a webpage
I'm predominately a Java guy, which is why I need some assistance on what I assume is rather simple to do in PHP (and rather simple with Java too, although perhaps a bit... verbose).
Simply put, I ...
0
votes
3answers
52 views
GUI control for representing amount of time
I have an input asking the submitter how long an event took. Right now it's a normal textbox that should error out if anything but an integer is submitted. I tell the submitter to input the length in ...
2
votes
1answer
389 views
C++ CIN cin skips randomly
I have this program, but cin in randomly skips.. I mean sometimes it does, and sometimes it doesn't. Any ideas how to fix this?
int main(){
/** get course name, number of students, and ...
5
votes
2answers
425 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 ...
1
vote
6answers
610 views
Parsing impossible dates in C#
Is there an elegant way to be permissive in date input in C# to accommodate user input like '2009-09-31' (e.g. September 31, which doesn't exist and causes DateTime.Parse to choke)? Ideally I would ...
3
votes
5answers
189 views
Can TDD be a valid alternative to overkill data validation?
Consider these two data validation scenarios:
Check everything everywhere
Make sure that every method that takes one or more arguments actually checks them to ensure that they're syntactically ...
1
vote
2answers
513 views
WYSIWYG textarea component security
Really my question has more to do with the server-side scrubbing of html that's accepted via the WYSIWYG form component. Right now I'm leaning toward using htmlpurifier.org's library. I'm using php ...
