0
votes
3answers
50 views
How to Regular Expression match not having a constant at the end of a string (.net validator)
The item referenced in this question does not seem to work for me.
I'm using the Regular Expression validator in .net
I need to pass validation if the input field does NOT look li …
0
votes
1answer
74 views
(PHP) Validation, Security and Speed - Does my app have these?
Hi all,
I am currently working on a building community website in PHP. This contains forms that a user can fill right from registration to lot of other functionality. I am not an O …
3
votes
3answers
53 views
What is a good way to process data from a form before applying business logic in PHP?
I think this is a common issue.
Whenever there is a form on a web page, there is a PHP file on the back-end processing the data sent from the form. You start with $_POST, You need …
1
vote
5answers
84 views
Validating user input with JavaScript
I need to make it so a user can ONLY type a-z0-9 into my input box. How can I make it so the user simply cannot type other characters? If this isn't possible, how can I simply chec …
1
vote
1answer
17 views
Using DataAnnotations for validation in MVVM
Hi,
I've discovered the new data annotation features of SL3 and I'm using them for user input validation.
I've got inputs like these:
<dataInput:Label Target="{B …
0
votes
4answers
128 views
C# validation of input
I am creating a short c# console program that will ask 10 addition questions using random numbers from 0-10. Then it tells the user how many correct or incorrect. I am trying to …
0
votes
2answers
41 views
javascript and regularexpression?
hi,
i have a doubt that whether javascript expression is better or regularexpression is better.
i mean for validation javascript is best or ?How it is different form each other? …
1
vote
2answers
144 views
How to make sure input is a double in the C programming language
How do I make sure I've got a double and not something else?
int main() {
int flagOk = 0;
double number;
while(!flagOk) {
printf("Put in a double");
scanf("% …
1
vote
2answers
65 views
Credit Card validation with Jquery
Hello , i'm trying to validate credit card numbers with jQuery but i dont want to use the validation plugin , is there any other plugin for doing this?
thanks
0
votes
1answer
41 views
using spring validation on request headers
Is it possible to use the spring validation framework with Spring MVC to validate the presence/absence and value of an HTTP request header?
Thanks!
3
votes
1answer
63 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 form …
0
votes
2answers
37 views
Long text input from user and PDF generation
I have built a web application that can be seen as an overcomplicated application form. There are bunch of text areas with a given character limit. After the form submission variou …
0
votes
3answers
58 views
Validation to allow space for phone numbers
i have a validation in my .net textbox where it will take only numbers
but when i put the the phone format like
080 234234
it will not accept because of a space
how to resolv …
0
votes
1answer
43 views
Validating an input based on what is entered in another input - Rails
Hi all,
I have a form that has a group of 3 text_fields. I need two of them filled to make calculations. quantity must always be filled. If price is blank, then cost must be fille …
2
votes
5answers
257 views
ASP.NET: Validate file size (width and height) before upload.
Hello!
Is there some way to validate the image size (height and width) before upload it to server?
I think is using Javascript but I don't know how. Or maybe with some client asp …
