Javascript code to check password complexity | Validation for Strong Password...
The following Javascript code is used to check whether the given password satisfies the following rules 1. Password should have at least 8 characters. 2. Password should have i) at least one...
View ArticleStruts JavaScript Validation using Validator framework example code
Struts validator framework provides easy way for server side form data validations. Similarly it also provides very easy to use mechanism to perform client side validations. JavaScript code to...
View ArticleJava code to validate Email in Java using regex (Regular Expression)
The following code illustrates the code for validating Email using Java Regular Expression (java.util.regex). Before writing code for validating Email Address, we have to understand which is valid...
View ArticleStruts Validator Framework Example- step by step guide.
The following steps guides the process of installing and configuring the Struts Validator component. The Struts Validator depends on various libraries to work properly. It requires the following...
View ArticleNumeric Validation in JavaScript | Code for IsNumeric() function to check...
JavaScript Validation is important, because before sending the web page to the server, we have to make sure that input are acceptable. In any web page, we may accept Mobile Number , Email, Age, Date of...
View ArticleDate Validation in Javascript. Example using split and Regex for dd/mm/yyyy,...
There are many ways to check whether the input date is valid or not using Javascript. Let me explain the two ways. You can use any one of the ways which one you feel comfortable. For...
View Article