2
votes
1answer
62 views
Help calling PHP from a javascript if statement
Here is the javascript:
function checkusername()
{
var username = $("#username").val();
$.post("usernamecheck.php", …
0
votes
0answers
4 views
spring.net validation
Hi,
I'm trying to use the Spring.net framework for the first time. I would like to use its validation capabilities.
I'm currently trying to validate business objects, so I have defined several …
0
votes
1answer
23 views
Page postback even after showing validation summary
Hello friends,
I have a masterpage, having same old header, footer and content sections. I have different aspx pages bases on this masterpage. But each aspx contains a web user control.
For ex. …
4
votes
4answers
75 views
Flexible numeric string parsing in Python
Are there any Python libraries that help parse and validate numeric strings beyond what is supported by the built-in float() function? For example, in addition to simple numbers (1234.56) and …
0
votes
3answers
51 views
Is there a way to get a ValidationSummary to work with client-side validators?
The .NET ValidationSummary control aggregates error messages from validators that are fired on postback. Is there some way of getting it to also show error messages from client-side validators?
The …
0
votes
2answers
24 views
Validation Application Block Questions
Hi,
Has anyone used the validation application block from enterprise library? Any success?
Anyways, my question is with regards to validating a numeric unique identifier. Lets say I have a Product …
1
vote
5answers
49 views
How to check if inputs are empty with JQuery?
I have a form that I would like all fields to be filled in. If a field is clicked into and then not filled out, I would like to display a red background.
Here is my code:
*$('#apply-form …
3
votes
3answers
30 views
Validating XML parser for Flex/actionscript?
Is there a validating XML parser for flex/actionscript? The XML class verifies that it is well formed XML, but not that it follows the rules of the DTD. Java has a validating XML parser, but is …
0
votes
2answers
29 views
PHP Dynamic Regular expression?
Hi all,
I'm relativly new to regular expressions but I managed to create a working expression to validate dates (without leap years, and assuming people enter a valid 30 or 31 digit for a month).
…
0
votes
2answers
36 views
jquery validation plugin
someone has used this jquery plugin for form validation?
http://docs.jquery.com/Plugins/Validation
i cant figure out how to use it. it doesnt say anything in the documentation how to name the html …
0
votes
3answers
31 views
Any tools or techniques for validating constraints programmatically between databases?
If you had two databases, that had two tables between them that would normally implement a one to one (or many to many) constraint but cannot since they are separate databases, how would you validate …
0
votes
1answer
15 views
How to Validate numeric, positive and negative input using jQuery
I have tried several methods and keep getting object doesn't support this method error.
I am simply trying to validate if the input in my textbox is a valid number
Following values are ok:
-45
0.45
…
0
votes
2answers
53 views
Validating Entries in an ASP.NET GridView without JavaScript
Background
I have a GridView where input in Column1 depends on the input Column2.
If a user enters a N in Column2 the system will put a Y in Column1.
The Validatons are implemented using Regexs …
1
vote
1answer
35 views
formvalidation with php and javascript/jquery?
im new in formavalidation.
i am wondering if there is some library class you can download and include and then use for formvalidation in php and also in javascript/jquery?
it would save a lot of …
1
vote
5answers
160 views
Validate website ownership in rails
Hi all,
Hoping someone can help me out with this one:
What's the best way to validate whether a particular user has ownership of a website?
Let's say you had this model:
class User < …
