RE: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-30 Thread Shilpa Nalgonda
List Subject: Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected Ok. Cool. That's what I'm using as well. Your on the right track with the bean. Just make sure it extends org.apache.struts.action.ActionForm (it won't work otherwise) and then add it to the form

Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-30 Thread Tim Funk
flame level='high AH!! THIS IS A STRUTS QUESTION!! Post it to the right group! http://jakarta.apache.org/site/mail2.html#Struts /flame -Tim Shilpa Nalgonda wrote: I did waht all is mentioned, but still i have one problem, radio button not functioning properly. when i select new user it

Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-30 Thread David Smith
True, but this is way too much yelling for this early in the morning (8:30am EDT). --David Tim Funk wrote: flame level='high AH!! THIS IS A STRUTS QUESTION!! Post it to the right group! http://jakarta.apache.org/site/mail2.html#Struts /flame -Tim Shilpa Nalgonda wrote: I did waht all

[OT] Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-30 Thread David Smith
: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected Ok. Cool. That's what I'm using as well. Your on the right track with the bean. Just make sure it extends org.apache.struts.action.ActionForm (it won't work otherwise) and then add it to the form-beans section of your

RE: [OT] Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-30 Thread Shilpa Nalgonda
: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected Where your app goes after submitting is up to your action code. Normally there's a class that extends org.apache.struts.action.Action and implements the execute method. Somewhere in that execute method is something

org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread Shilpa Nalgonda
Hi i am getting the following error, org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler. java:94) at org.apache.jasper.compiler.ErrorDispatcher.dispatch

Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread Tim Funk
I bet its: html:radio property=checkCustomerType value=new checked/ -Tim Shilpa Nalgonda wrote: Hi i am getting the following error, org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected at org.apache.jasper.compiler.DefaultErrorHandler.jspError

RE: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread Shilpa Nalgonda
How to resolve that? -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Thursday, July 29, 2004 3:27 PM To: Tomcat Users List Subject: Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected I bet its: html:radio property=checkCustomerType

Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread Tim Funk
3:27 PM To: Tomcat Users List Subject: Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected I bet its: html:radio property=checkCustomerType value=new checked/ -Tim Shilpa Nalgonda wrote: Hi i am getting the following error, org.apache.jasper.JasperException

Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread David Smith
: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected I bet its: html:radio property=checkCustomerType value=new checked/ -Tim Shilpa Nalgonda wrote: Hi i am getting the following error, org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

RE: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread Shilpa Nalgonda
PROTECTED] Sent: Thursday, July 29, 2004 3:56 PM To: Tomcat Users List Subject: Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected Well The checked attribute is without a value. You'll have to set it to something or remove it. As mentioned by Tim Funk

Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread David Smith
: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected Well The checked attribute is without a value. You'll have to set it to something or remove it. As mentioned by Tim Funk, the checked attribute doesn't exist in the API for the html:radio/ tag. I'm guessing you want to set one

RE: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread Shilpa Nalgonda
thanks, and i am using Struts -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Thursday, July 29, 2004 4:47 PM To: Tomcat Users List Subject: Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected Quick question -- are you using Struts

Re: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected

2004-07-29 Thread David Smith
: org.apache.jasper.JasperException: /CheckCustomer.jsp(36,67) equal symbol expected Well The checked attribute is without a value. You'll have to set it to something or remove it. As mentioned by Tim Funk, the checked attribute doesn't exist in the API for the html:radio/ tag. I'm guessing you want to set one