Hi
We use regular expression to validate an Email field is is something like
this. I think this is the reason. What is the workaround for that ?

    function checkemail(strEmail)
    {
        var testresults;
        var str=strEmail;
        var
filter=/^(\w+(?:\.\w+)*)@((?:\w+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2}
)?)$/i;
        if (filter.test(str))
            testresults=true;
        else
        {
            alert("Please input a valid email address!");
            testresults=false;
        }
        return (testresults);
    }


-----Original Message-----
From: Zeng, Feng_Hua (CAP,CEF,Contractor)
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 13, 2002 1:56
To: [EMAIL PROTECTED]
Subject: Re: IE 5.0 error


It seems to be a JScript error message.
 Do you code with any regular expressions ?

It might be advisable that you paste here
 the HTML source produced by your JSP codes.

Regards

-----Original Message-----
From: JOSHY MON M C [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 13, 2002 4:50 PM
To: [EMAIL PROTECTED]
Subject: IE 5.0 error


Hi All
I have a JSP page that works fine with IE 5.5. But it shows an error
'Unexpected Quantifier. Do U wish to debug?" on IE 5.0 ?

Can anyone help. Sorry for this question to this forum
Thanks
Joshy

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to