Re: Email Validation

2000-05-25 Thread Gert Koning
I use Javascript on the client side for this. Something like: if (myform.email.value.search(/^[a-zA-Z0-9\-\.]+\@[a-zA-Z0-9\-\.]+$/) == -1) alert('ERROR: Badly formatted E-mail address.'); error = 1; return; } Gert Koning University of South Africa - Origin

Problem shutting down Tomcat 3.1

2000-05-08 Thread Gert Koning
ht on this? Thanx, Gert Koning University of South Africa === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/product

Re: A Live Fully Functional Database Application in JSP

2000-04-18 Thread Gert Koning
The site looks great! Just curious, what JSP engine are you using? Gert Koning - Original Message - From: <[EMAIL PROTECTED]> Sent: Monday, April 17, 2000 09:02 Subject: A Live Fully Functional Database Application in JSP > Hi Everyone, > > If you are looking

Writing more than one cookie with a servlet

2000-04-14 Thread Gert Koning
ie.setPath("/"); res.addCookie(secondCookie); Any suggestions? Gert Koning University of South Africa === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servl

Re: JSP-INTEREST Digest - 12 Apr 2000 to 13 Apr 2000 (#2000-32)

2000-04-14 Thread Gert Koning
, "string1"); firstCookie.setPath("/"); res.addCookie(firstCookie); Cookie secondCookie = new Cookie("cookie2", "string2"); secondCookie.setPath("/"); res.addCookie(secondCookie); I am using Tomcat 3.0 on Lin