usercount.jsp

来自「bbs系统源码有简单的bbs功能 论坛:http://www.mycodes.」· JSP 代码 · 共 51 行

JSP
51
字号
<%@ page language="java" contentType="text/html;charset=UTF-8" %><%@ 
include file="../GVinc/gvInclude.jsp" %><%@ 
include file="clubMasterPass.jsp" %><% 	

String keys= ParamUtils.getStringParameter(request, "keys");
if(request.getMethod().equals("POST")){
	com.gamvan.club.user.ClubUserCounter cuct = new com.gamvan.club.user.ClubUserCounter();
	cuct.userCounter(ParamUtils.getStringParameter(request, "act"));
	out.print(prtCenter2(cuct.getMessage(),"./userCount.jsp",1));
	out.close();
	return;
}
%>
<html>
<head>
<title>今晚在线-社区管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="css.css" rel="stylesheet" type="text/css">
</head>
<body>
<script type="text/javascript" src="../GVscript/GVjumpPage.js"></script>
<table width="99%" border="0" align="center" cellpadding="2" cellspacing="2" bgcolor="#e6e6e6">
<tr>
  <td align="center"><strong>社区用户统计</strong></td>
</tr></table>
<table width="99%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#e6e6e6">
<form name="form1" method="post" action="">
<tr bgcolor="#f6f6f6">
<td height="29" colspan="2" bgcolor="#f6f6f6">
提醒:用户数量庞大可能导致系统执行缓慢,如非必要无需更新这些统计内容,这些内容仅为参考内容!
</td></tr>
<tr bgcolor="#f6f6f6">
<td width="135" bgcolor="#f6f6f6">更新内容</td>
<td width="624" bgcolor="#f6f6f6"><select name="act" id="act">
  <option value="1" selected>更新用户地区统计</option>
</select></td>
</tr>
<tr bgcolor="#f6f6f6">
<td bgcolor="#f6f6f6">&nbsp;</td>
<td bgcolor="#f6f6f6"><input type="submit" name="Submit" value="提交"></td>
</tr>
<tr bgcolor="#f6f6f6">
<td bgcolor="#f6f6f6">&nbsp;</td>
<td bgcolor="#f6f6f6">&nbsp;</td>
</tr>
</form>
</table>
<br>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?