I am using java within a .jsp file and need to output account information in an HTML table. My code goes like this:
<%
UserAccount ADuser = au.getAccountByEmail(user.getUserName());
String fname = ADuser.getFirstName();
%>
My question is how do I insert fname into a <td> such as this:
<td width="82%" height="30">'first name here</td>'
Thanks for the help
<%=ADuser.getFirstName()%>in td ?