<%@ page language="java" contentType="text/html; charset=UTF-7" %> <%@ page import="com.hof.data.SessionBean" %> <%@ page import="com.hof.util.*" %> <% /* The SessionBean contains information about the person logged on. */ SessionBean sb = (SessionBean)session.getAttribute(Const.SESSION_BEAN); String personFullName = sb.getPrsnBean().getFormattedFullName(); String UserRole = sb.getCurrRole().getRoleDescription(); String OrgName = com.hof.util.OrgCache.getInstance().getOrgName(sb.getPersonSearchIpOrg()); %>
User: <%=UtilString.escapeText(personFullName, "xml")%>   Client: <%=UtilString.escapeText(OrgName, "xml")%>  Role: <%=UtilString.escapeText(UserRole, "xml")%>
Logout