what is wrong here?

2003-05-27 Thread Erez Efrati
I keep getting errors on the following: (I am using 1.1 beta 3) bean:define id=col value='%= 6 / 4 + 1 %' / Can someone tell me what is wrong here? Thanks, Erez - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: what is wrong here?

2003-05-27 Thread Steve Raeburn
Efrati [mailto:[EMAIL PROTECTED] Sent: May 27, 2003 6:44 PM To: 'Struts Users Mailing List' Subject: what is wrong here? I keep getting errors on the following: (I am using 1.1 beta 3) bean:define id=col value='%= 6 / 4 + 1 %' / Can someone tell me what is wrong here? Thanks, Erez

RE: what is wrong here?

2003-05-27 Thread Mark Galbreath
PM To: 'Struts Users Mailing List' Subject: what is wrong here? I keep getting errors on the following: (I am using 1.1 beta 3) bean:define id=col value='%= 6 / 4 + 1 %' / Can someone tell me what is wrong here? Thanks, Erez

RE: what is wrong here?

2003-05-27 Thread Steve Raeburn
] Subject: RE: what is wrong here? Well, for one thing, review your JSP. %= xxx % is a synonym for out.println. It cannot render calculations at runtime. You have to have a function to do that, like %= calculate( 6/4+1 ) %. Mark

RE: what is wrong here?

2003-05-27 Thread Mark Galbreath
'; [EMAIL PROTECTED] Subject: RE: what is wrong here? Well, for one thing, review your JSP. %= xxx % is a synonym for out.println. It cannot render calculations at runtime. You have to have a function to do that, like %= calculate( 6/4+1 ) %. Mark