Ivan Handler wrote:
>
> I get the following error message when I invoke my JSP,
> authenticate.jsp:
> -------------------------------------------------------------------------------------
>
> org.apache.jasper.compiler.ParseException:
> /home/ivan/jakarta-tomcat/webapps/CHT/jsp/authenticate.jsp(6,46)
> Attribute , has no value
> 
>------------------------------------------------------------------------------------------
>
>  Can anyone help me determine which line it is referring to?  Neither
> line 6 nor line 46 (which is blank) are java code.  I'm sure my mistake
> is stupid, but I am new to this technology and I need a little help.

Make sure you do use quote characters in all JSP elements correctly,
for instance that all attribute values are embedded in double or single
quotes and that you don't use the same type of quote character *in* an
attribute value as you use to *embed* the attribute value. Also make
sure you close all JSP elements correctly (e.g. end directives with %>).
Typically, the "attribute has no value" message means that the JSP
container has a problem interpreting your page due to syntax errors
like these.

Hans
--
Hans Bergsten           [EMAIL PROTECTED]
Gefion Software         http://www.gefionsoftware.com
Author of JavaServer Pages (O'Reilly), http://TheJSPBook.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://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to