forbid.jsp

来自「一个不错的bbs论坛系统.对初学者很有帮助」· JSP 代码 · 共 54 行

JSP
54
字号
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>访问管理</title>
<style type="text/css">
.display{
	color: #696969;
}
</style>
</head><body>
<table class="rtab" cellSpacing=0 cellPadding=0 width=100%>
	<tr><td width="20%"><%@include file="left.jsp"%></td>
	    <td width="80%" valign="top" class="td_t"><p>&nbsp;</p>
		<div class="r_title">注册管理</div><hr size="1">
	    <span class="list">
	    	<div>
	    	<form action="../admin/Forbid.do" method="post">
	    	    <input type="hidden" name="type" value="<c:out value="${type}"/>">
	    	    <input type="hidden" name="action" value="post">
	    	    <div>
	    	    <c:if test="${0 eq type}">
					保留用户:被保留的用户不能够被注册。    	    	
	    	    </c:if>
	    	    <c:if test="${1 eq type}">
					保留E_mail:被保留的E_mail不能够被注册。
	    	    </c:if>
	    	    <c:if test="${2 eq type}">
					禁止访问IP:该IP(IP段)不能够访问论坛。<br>
					IP格式:10.0.0.1<br>
					IP段格式:10.0.0.1-10.0.1.128 或 10.0.0.* 或 10.0.*.* 或 10.*.*.*
	    	    </c:if>
	    	    <c:if test="${3 eq type}">
					禁止注册IP:该IP(IP段)不能够注册论坛用户。<br>
					IP格式:10.0.0.1<br>
					IP段格式:10.0.0.1-10.0.1.128 或 10.0.0.* 或 10.0.*.* 或 10.*.*.*
	    	    </c:if>
	    	    </div>
	    	    <div><b>请保证每行一个记录</b></div>
	    	    <div>
	    	    <textarea name="content" rows="12" cols="30"><c:out value="${content}"/></textarea>
	    		</div>
	    		<br>
	    		<div><input type="submit" value="提交">&nbsp;&nbsp;
		        <input type="button" onclick="javascript:history.go(-1);" value="后退"></div>
	    	</form>
	    	</div>
	    </span>
		</td>
	</tr>
</table>
</body></html>

⌨️ 快捷键说明

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