Re: Strange Problem with logic:equals!

2005-10-07 Thread starki78
+0200 Subject : Re: Strange Problem with logic:equals! > > creates BOTH > - a script variable (a Java variable you can use in <% ... %> java blocs) > - a bean in specified scope (defaults to page) > > > So you have a "myBeanValue" variable set to 1 and a &q

Re: Strange Problem with logic:equals!

2005-10-07 Thread Nicolas De Loof
creates BOTH - a script variable (a Java variable you can use in <% ... %> java blocs) - a bean in specified scope (defaults to page) So you have a "myBeanValue" variable set to 1 and a "myBeanValue" String put into page scope. <% myBeanValue = "2"; %> changes value of script variable. my

Re: Strange Problem with logic:equals!

2005-10-07 Thread Aymeric Alibert
Do you have the struts-bean tag library defined in your jsp:? Something like <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> Aymeric. On 10/7/05, starki78 <[EMAIL PROTECTED]> wrote: > > Hi, we have a strange Problem > with logic:equal > > Look at the following code: > > > //--> first w

Re: Strange Problem with logic:equals!

2005-10-07 Thread Leon Rosenberg
On 10/7/05, starki78 <[EMAIL PROTECTED]> wrote: > Hi, we have a strange Problem > with logic:equal > > Look at the following code: > > > //--> first we create a bean > > > > //--> changing the value is this possible in the way??? > > <% myBeanValue = "2"; %> change this to <% pageContext.s