I\'ve got a JSP page, which calls a function and checks its return value. If the return value is not null, the JSP page goes on to use it. If the return value IS null, I wan
You may use JSTL tag:
bodytext
Which is better than <% if(condition) { %> bodytext <% } %> for controlling on loading page / process.
<% if(condition) { %> bodytext <% } %>