<%@ page import="miniforum.IConstants,
miniforum.HtmlUtils,
miniforum.data.UserUtils"%>
<%@ page pageEncoding="windows-1251" %>
<table border="0" width="100%">
<tr><td align="center" bgcolor="#66CCFF">
<%
String currentUser = UserUtils.getCurrentUser(session);
if (currentUser != null) {
%>
Потребител: <%=HtmlUtils.htmlEscape(currentUser)%>
<a href="<%=IConstants.LOGOUT_URL%>">[изход]</a>
<%
} else {
%>
<%
}
%>
</td></tr>
</table>
Back to Internet Programming
with Java books's web site