You are missing parentheses:
<% if( client == null) { %>
NO client
<% } else { %>
<a href='page.jsp?aid=<%=client.getID()%>'> and his name is <%=client.getName()%>
<% } %>
However, this is an example of bad JSP code. Consider using JSTL tags / expressions instead of scripts.
source
share