📄 whosonline.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ include file="common/include/taglibs.jsp" %>
<%@ page import="net.lybbs.util.DateUtils"%>
<html:html>
<head>
<title><lybbs:web key="forumName"/></title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="bookmark" href="favicon.ico" type="image/x-icon">
<%@ include file="common/include/header.jsp" %>
</head>
<body topmargin=0 leftmargin=0>
<TABLE class=tableCommonStyle cellSpacing=1 cellPadding=3 border=0 align=center>
<TR>
<TD height=4 class=bgStyle></TD>
</TR>
<TR>
<TD class=noBgStyle>
<lybbs:typeAdTag/>
</TD>
</TR>
<TR>
<TD height=4 class=bgStyle></TD>
</TR>
<tr>
<td class=menuStyle height=22>
<table width=100% cellpadding=0 cellspacing=0 border=0>
<tr>
<td align=left>
<lybbs:typeUserHeaderTag forumID="0"/>
</td>
<td align=right>
<lybbs:web key="returnHomeLink"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<table class=tableCommonStyle cellpadding=3 cellspacing=1 border=0 align=center>
<tr>
<td class=navStyle vAlign=center height=25>
<img src="lybbs/images/forum_nav.gif" width="9" height="9" align="absMiddle"> <a href="bbs_index.do"><lybbs:web key="forumName"/></a> <bean:message key="common.lybbs.arrow"/> <bean:message key="common.lybbs.onlinelist"/>
</td>
</tr>
</table>
<br>
<table class=tableCommonStyle cellpadding=3 cellspacing=1 border=0 align=center >
<tr>
<td class=catStyle valign=middle colspan=6 align=center><b>
<bean:message key="common.lybbs.onlinelist"/>
</b></td>
</tr>
<tr>
<td class=forumColorOne align=center><b>
<bean:message key="common.lybbs.username"/>
</b></td>
<td class=forumColorOne align=center><b>
<bean:message key="common.lybbs.online.nowposition"/>
</b></td>
<td class=forumColorOne align=center><b>
<bean:message key="common.lybbs.online.visittime"/>
</b></td>
<td class=forumColorOne align=center><b>
<bean:message key="common.lybbs.online.lastactivetime"/>
</b></td>
</tr>
<logic:iterate id="element" name="userListBean" type="net.lybbs.user.bean.data.OnlineUser">
<tr>
<td class=forumColorTwo>
<logic:equal name="element" property="userMode" value="0">
<b><bean:write name="element" property="userName"/></b>
</logic:equal>
<logic:notEqual name="element" property="userMode" value="0">
<logic:equal name="element" property="hidden" value="1">
<bean:message key="common.lybbs.hiddenuser"/>
</logic:equal>
<logic:equal name="element" property="hidden" value="0">
<a href=bbs_userShow.do?userID=<bean:write name="element" property="authorID"/>><b><bean:write name="element" property="userName"/></b></a>
</logic:equal>
</logic:notEqual>
</td>
<td class=forumColorTwo>
<bean:write name="element" property="position" filter="false"/>
</td>
<td class=forumColorTwo align=center>
<%=DateUtils.getLong2MediumString(element.getLoginTime())%>
</td>
<td class=forumColorTwo align=center>
<%=DateUtils.getLong2MediumString(element.getLastActiveTime())%>
</td>
</tr>
</logic:iterate>
<tr>
<td colspan=5 class=forumColorOne>
<bean:write name="pageUtils" property="pageInfo" filter="false"/>
</td>
</tr>
</table>
<lybbs:web key="foot"/>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -