📄 control.jsp
字号:
<%@ include file = "../../config.jsp" %>
<%@ page import="java.util.*"%>
<%@ page contentType="text/html;charset=GBK"%>
<jsp:useBean id="ManagerMember" scope="page" class="myshop.member_sys.ManagerMember"/>
<jsp:useBean id="Handle" scope="page" class="myshop.Handle"/>
<%
String CurrentPage = Handle.getString(request,"CurrentPage","0");
String keywords = Handle.getString(request,"keywords");
String type = Handle.getString(request,"type");
Hashtable AOutParam = new Hashtable();
AOutParam = ManagerMember.ReadData(CurrentPage,20,"control.jsp",keywords,type,tb_member_info);
%>
<html>
<head>
<title>CWC大型购物商城</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../../style" rel="stylesheet" type="text/css">
<script language="javascript">
function AlertDel(name) {
if (confirm("确定要删除'" + name + "'记录吗")) return(true);
else return(false);
}
</script>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td width=80%>会员操作 -> 管理会员</td>
<td width=20%>会员总数:<font color=red> <%=AOutParam.get("RecordCount") %> </font></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#999999">
<tr align="center" valign="middle" bgcolor="dddddd">
<td width="7%">编号</td>
<td width="11%">帐号</td>
<td width="10%">姓名</td>
<td width="4%">性别</td>
<td width="4%">年龄</td>
<td width="13%">电话</td>
<td width="17%">地址</td>
<td width="10%">邮件</td>
<td width="10%">注册日期</td>
<td width="14%">操作</td>
</tr>
<%=AOutParam.get("HtmlStr") %>
</table>
<br>
<%=AOutParam.get("TurpageStr") %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -