<%StringBuffer fullName = new StringBuffer(); if (id != null) { String val; try { val = Silhouette.getSilCivID(); fullName.append(dico.getRefDisp(session, "SilCivID", val) + " "); } catch (FieldNotInitializedException e) { } try { val = Silhouette.getSilFstName(); fullName.append(val + " "); } catch (FieldNotInitializedException e) { } try { val = Silhouette.getSilName(); fullName.append(val + " "); } catch (FieldNotInitializedException e) { } } %> <%=fullName.toString()%>
">