Hmm.... the jsp appears to be alright. What's in your application.properties file for properties used in the <html:errors/> tag?

Shilpa Nalgonda wrote:

org.apache.jasper.JasperException: /BillingInfo.jsp(1,16) quote symbol
expected

I am getting the above error, i am using struts tags in my BillingInfo.jsp.
Below is my BillingInfo.jsp...

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<html>
 <head>
   <title>Billing User Registration</title>
 </head>
 <body>
   <h1>Customer Billing Information</h1>
<html:errors/>
   <table>
   <html:form action="BillingInfo">
     <tr>
       <td>
        <bean:message key="BillingInfo.firstName" />*
       </td>
       <td>
         <html:text property="firstName" />
       </td>
     </tr>
       <td>
         <bean:message key="BillingInfo.lastName" />*
       </td>
       <td>
         <html:text property="lastName" />
       </td>


<tr> <td> <html:submit /> </td> <td> <html:cancel /> </td> </tr> </html:form> </table> </body>

==========================================================================


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]




--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to