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
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.
=