onlineList.jsp
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:3k
- <%@ page language="java" contentType="text/html;charset=UTF-8"
- session="true" errorPage="err.jsp" %>
- <%@ include file="./GVinc/gvImport.jsp" %>
- <%@ include file="GVinc/gvOnlineArea.jsp" %>
- <%
- boolean listip = false;
- listip = isPass(gvUserGradeTxt,10);
- int iPage = TypeChange.stringToInt(request.getParameter("iPage"));
- if(iPage<1){iPage = 1;}
- %>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title><%=clubTitle%></title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <link href="./GVimgs/favicon.ico" rel="Bookmark">
- <link rel="icon" href="./GVimgs/favicon.ico" type="image/x-icon" />
- <link rel="shortcut icon" href="./GVimgs/favicon.ico" type="image/x-icon" />
- <link href="./GVinc/main.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <IFRAME id=hiddenframe style="DISPLAY: none" src="about:blank" width=0 height=0></IFRAME>
- <DIV id="waitDiv" style="LEFT: 40%; VISIBILITY: hidden; POSITION: absolute; TOP: 20%; TEXT-ALIGN: center">
- <TABLE cellPadding=6 border=0>
- <TBODY><TR><TD align=middle>
- <IMG src="GVimgs/loading.gif" alt="请稍候..." width="30" height="30">
- <BR>
- <FONT color="red">数据载入中,请稍候...</FONT></TD></TR></TBODY></TABLE></DIV>
- <script language="javascript" type="text/javascript" src="GVscript/GVtopCode.js"></script>
- <script language="javascript" type="text/javascript" src="GVscriptInc/topBar.js"></script>
- <SCRIPT language="javascript">gv_showWait('waitDiv', 1); </SCRIPT>
- <table width="99%" border="0" align="center" cellpadding="2" cellspacing="1" class="tab">
- <tr align="center" class="tr">
- <td width="160" height="22"><strong>用户</strong></td>
- <td width="120" height="22"><strong>位置</strong></td>
- <td width="130"><strong>时间</strong></td>
- <td width="120"><strong>IP</strong></td>
- <td width=""> </td>
- </tr>
- <c:forEach var="o" items="<%=col.onlineList(iPage,30)%>">
- <tr class="tab2">
- <td height="25" align="center">
- <a href="userInfo.jsp?userID=<c:out value="${o.onUserID}" />" target="_blank">
- <c:out value="${o.userName}" />
- </a>
- </td>
- <td align="center">
- <c:out value="${o.userArea}" escapeXml="false"/>
- </td>
- <td align="center">
- <span class="smallTxt"><club:users type="userRegTime" value="${o.lastTime}"/></span>
- </td>
- <td align="center">
- <% if(listip){%>
- <c:out value="${o.userip}" />
- <%}else{%>
- ***
- <%}%>
- </td>
- <td align="center">
- </td>
- </tr>
- </c:forEach>
- </table>
- <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <%=OutPrint.pageJump(onlines,30, iPage, "onlineList.jsp?")%>
- </td>
- </tr>
- </table>
- <%=Gfoot()%>
- </body>
- </html>