Re: Email Validation

2002-01-22 Thread Dmitry Namiot
check out Validation taglib from Coldtags suite: http://www.servletsuite.com/jsp.htm -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com __ Your favorite stores, helpful shopping tools and great

Email Validation

2002-01-21 Thread Surya Narayana
Hello all, How can we do Email ID validation using JDK 1.3 API? java.util.regex is only available in JDK 1.4 Regards, Surya

Re: Email Validation

2002-01-21 Thread Xavier Cosyns
Hi, You will find a regular expression package at jakarta.apache.org, it's named 'regexp'. Have a nice day, xavier cosyns, Original Message --- Hello all, How can we do Email ID validation using JDK 1.3 API? java.util.regex is only available in JDK 1.4 Regards,

Re: Email Validation

2002-01-21 Thread Hardeep Singh
, January 21, 2002 3:19 PM Subject: Email Validation Hello all, How can we do Email ID validation using JDK 1.3 API? java.util.regex is only available in JDK 1.4 Regards, Surya

Re: Email Validation

2000-05-25 Thread Gert Koning
- From: ramadevi [EMAIL PROTECTED] Sent: Monday, January 24, 2000 08:49 Subject: Re: Email Validation hai find the index of '@' and check whether it is first character or not you can find the index by using indexOf(char) of string class Fei Fei Lua wrote: i've been trying to do some

Re: Email Validation

2000-05-24 Thread ramadevi
pt to user that it is not a valid email format which should be "[EMAIL PROTECTED]" instead. how do i do this ? is this the norm of email validation ??? below is my program, when i run i have nullpointer exception at MemberBean.testEmail thank you for your a

Re: Email Validation

2000-05-23 Thread Fei Fei Lua
i've been trying to do some validation on email format from a html form, i need to read " @email.com.cc" and prompt to user that it is not a valid email format which should be "[EMAIL PROTECTED]" instead. how do i do this ? is this the norm of email validation ??? below is my

Email Validation

2000-05-22 Thread Fei Fei Lua
hi Gurus, can you pls show me the way to validate Email format (on html/jsp form input) ? what's the best way of doing it ? bean ? script ? thank you for your attention, fay === To unsubscribe: mailto [EMAIL PROTECTED]

Re: Email Validation

2000-05-22 Thread deepty kj
hi, Better to use scripts for client side validation. If u need server-side validation use Bean. deepati On Tue, 23 May 2000 11:39:03 +0800, A mailing list about Java Server Pages specification and reference wrote: hi Gurus, can you pls show me the way to validate Email

Re: Email Validation

2000-05-22 Thread Fei Fei Lua
do you mind to show me how could it be done ?? deepty kj wrote: hi, Better to use scripts for client side validation. If u need server-side validation use Bean. deepati On Tue, 23 May 2000 11:39:03 +0800, A mailing list about Java Server Pages specification and