Re: <% ....%> inside SELECT

1999-08-01 Thread Primož Hrvatin
I think if you tried to include a Java expression, it should work, like this: <%= testBean.getScreensList(myIndex) %> Note the <%= Java expression starting tag. The <% tag means general scriptlet code, and it won't work in such situations. In that case, it should be done like this: <% out.println

<% ....%> inside SELECT

1999-07-26 Thread Nanavate Mahesh
Hi, Consider the following piece of JSP page : $(bean=testBean property=screensList(myIndex)) <% testBean.getScreensList(myIndex); %> Is this a bug or am I missing some point ? Thanks in advance, Mahesh. =