This commit is contained in:
FJY
2017-10-29 22:55:28 +08:00
parent bc345795db
commit 56ae828c97
186 changed files with 7949 additions and 360 deletions

View File

@@ -0,0 +1,33 @@
<%@ page contentType="text/html; charset=gb2312" language="java"
import="java.util.*"%>
<%@ page import="com.wgh.UserForm"%>
<%
request.setCharacterEncoding("gb2312");
%>
<%
Vector myuser = (Vector) application.getAttribute("myuser");
%>
<link href="../css/bootstrap.css" rel="stylesheet">
<table class="table table-hover">
<tr>
<td height="32" align="center" class="word_orange disabled">欢迎来到VANTEN聊天室</td>
</tr>
<tr>
<td height="23" align="center"><a href="#" onclick="set('所有人')">所有人</a></td>
</tr>
<%
for (int i = 0; i < myuser.size(); i++) {
UserForm mylist = (UserForm) myuser.elementAt(i);
%>
<tr>
<td height="23" align="center"><a href="#"
onclick="set('<%=mylist.username%>')"><%=mylist.username%></a></td>
</tr>
<%
}
%>
<tr>
<td height="30" align="center">当前在线[<font color="#FF6600"><%=myuser.size()%></font>]人
</td>
</tr>
</table>