JSP email valid check : Beans « JSP « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » JSP » BeansScreenshots 
JSP email valid check

//validCheck.jsp
/*
<%@page contentType="text/html"%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<jsp:useBean id="chk" class="com.java2s.ClientValidator" >
<jsp:setProperty name="chk" property="*" />
</jsp:useBean>
<%-- get valid property from ClientValidator bean --%>
<c:set var="isValid" value="${chk.valid}" />
<c:if test="${isValid}">
    <c:set var="email" value="${chk.email}" scope="request" />
  <c:set var="password" value="${chk.password}" scope="request" />
</c:if>
<html>
<head><title>Client Checker</title></head>
<body>
<h2>Welcome</h2>
   
     <strong>Email</strong>: 
    <c:out value="${email}" /><br><br>
    <strong>Password</strong>: 
    <c:out value="${password}" />

</body>
</html>
*/
package com.java2s;

public class ClientValidator implements java.io.Serializable{

String email;
String password;
boolean valid;

public ClientValidator(){

    this.valid=false;}

public boolean isValid(){

  /* Use a Data Access Object to validate the email and password.
        If the validation does not fail then set this.valid to true*/
   this.valid=true;
   return valid;
   
   }

public void setEmail(String _email){

     if(_email != null && _email.length() 0)
        email = _email;
    else
         email = "Unknown";
}

public String getEmail(){

    return email; }

public void setPassword(String _password){

     if(_password != null && _password.length() 0)
        password = _password;
    else
         password = "Unknown"
}

public String getPassword(){

    return password; }

}



           
       
Related examples in the same category
1.Calling a Private Method
2.Jsp Form And Bean
3.Get Set Properties JSTL
4.Getting a Property Value
5.Using a Constructor
6.Using Bean Counter JSP
7.Using a Java Bean Jsp
8.Using Package Jsp
9.Using UseBean in Jsp
10.Set Property Value
11.Jsp Using Bean Scope Session
12.Bean property display
13.Beans with scriptlet
14.EL and Complex JavaBeans
15.JSP with Java bean
16.JSP form and Java beans
17.JSP and Java beans 3
18.JSP Standard Actions: set property
19.JSP and Java beans (JavaBeans) 1JSP and Java beans (JavaBeans) 1
20.JSP and Java beans (JavaBeans) 2JSP and Java beans (JavaBeans) 2
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.