📄 vipusergroup_add.jsp
字号:
<%@ page contentType="text/html; charset=utf-8" %>
<%@ page import="java.util.*"%>
<%@ page import="cn.js.fan.web.*"%>
<%@ page import="cn.js.fan.util.*"%>
<%@ page import="com.redmoon.forum.plugin.*"%>
<%@ page import="com.redmoon.forum.plugin.entrance.*"%>
<%@ page import="com.redmoon.forum.*"%>
<%@ page import="com.redmoon.forum.person.*"%>
<%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
<jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="pragma" content="no-cache">
<link rel="stylesheet" href="../../common.css">
<LINK href="default.css" type=text/css rel=stylesheet>
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title><lt:Label res="res.label.forum.admin.entrance" key="vip_usergroup_manage"/></title>
<script>
function findObj(theObj, theDoc)
{
var p, i, foundObj;
if(!theDoc) theDoc = document;
if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
{
theDoc = parent.frames[theObj.substring(p+1)].document;
theObj = theObj.substring(0,p);
}
if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
for (i=0; !foundObj && i < theDoc.forms.length; i++)
foundObj = theDoc.forms[i][theObj];
for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++)
foundObj = findObj(theObj,theDoc.layers[i].document);
if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
return foundObj;
}
var GetDate="";
function SelectDate(ObjName,FormatDate) {
var PostAtt = new Array;
PostAtt[0]= FormatDate;
PostAtt[1]= findObj(ObjName);
GetDate = showModalDialog("../../util/calendar/calendar.htm", PostAtt ,"dialogWidth:286px;dialogHeight:221px;status:no;help:no;");
}
function SetDate()
{
findObj(ObjName).value = GetDate;
}
function openWinKinds() {
var ret = showModalDialog('board_sel_multi.jsp',window.self,'dialogWidth:500px;dialogHeight:320px;status:no;help:no;')
if (ret==null)
return;
form1.boardNames.value = "";
form1.boards.value = "";
for (var i=0; i<ret.length; i++) {
if (form1.boardNames.value=="") {
form1.boards.value += ret[i][0];
form1.boardNames.value += ret[i][1];
}
else {
form1.boards.value += "," + ret[i][0];
form1.boardNames.value += "," + ret[i][1];
}
}
}
function getLeaves() {
return form1.boards.value;
}
</script>
<body bgcolor="#FFFFFF" topmargin='0' leftmargin='0'>
<jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
<%
if (!privilege.isMasterLogin(request))
{
out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
return;
}
%>
<table width='100%' cellpadding='0' cellspacing='0' >
<tr>
<td class="head"><lt:Label res="res.label.forum.admin.entrance" key="vip_usergroup_manage"/>
</td>
</tr>
</table>
<br>
<table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
<tr>
<td height=20 align="left" class="thead"> <lt:Label res="res.label.forum.admin.entrance" key="vip_usergroup_add"/> <a href="entranceVIPUserGroup.jsp"><lt:Label res="res.label.forum.admin.entrance" key="entrance_manage"/></a></td>
</tr>
<tr>
<td valign="top">
<%
String op = ParamUtil.get(request, "op");
VIPUserGroupDb vtu = new VIPUserGroupDb();
if (op.equals("add")) {
String groupCode = ParamUtil.get(request, "groupCode").trim();
String errMsg = "";
if (groupCode.equals("")) {
// errMsg += "用户名不能为空!\\r\\n";
}
String boards="",bDate,eDate;
Date beginDate=null,endDate=null;
boolean isValid = false;
boards = ParamUtil.get(request, "boards");
try {
bDate = ParamUtil.get(request, "beginDate");
eDate = ParamUtil.get(request, "endDate");
beginDate = DateUtil.parse(bDate, "yyyy-MM-dd");
endDate = DateUtil.parse(eDate, "yyyy-MM-dd");
isValid = ParamUtil.getBoolean(request, "isValid", false);
}
catch (Exception e) {
errMsg += e.getMessage() + "\\r\\n";
}
if (beginDate==null || endDate==null)
errMsg += SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "date_empty");
if (!errMsg.equals("")) {
out.print(StrUtil.Alert(errMsg));
}
else {
vtu.setGroupCode(groupCode);
vtu.setBeginDate(beginDate);
vtu.setEndDate(endDate);
vtu.setValid(isValid);
vtu.setBoards(boards);
if (vtu.create())
out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
else
out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
}
}
%>
<br>
<br>
<table width="52%" border="0" align="center" cellpadding="5" class="tableframe_gray">
<form name="form1" method="post" action="?op=add">
<tr>
<td align="left"><lt:Label res="res.label.forum.admin.entrance" key="user_group"/></td>
<td align="left"><label>
<select name="groupCode">
<%
UserGroupDb ugroup = new UserGroupDb();
Vector result = ugroup.list();
Iterator ir = result.iterator();
String opts = "";
while (ir.hasNext()) {
ugroup = (UserGroupDb) ir.next();
opts += "<option value=" + ugroup.getCode() + ">" + ugroup.getDesc() + "</option>";
}
%>
<%=opts%>
</select>
</label></td>
</tr>
<tr>
<td width="29%" align="left"><lt:Label res="res.label.forum.admin.entrance" key="begin_date"/></td>
<td width="71%" align="left"><input name="beginDate" size=10 readonly value="">
<img src="../../util/calendar/calendar.gif" align=absMiddle style="cursor:hand" onClick="SelectDate('beginDate','yyyy-mm-dd')"></td>
</tr>
<tr>
<td align="left"><lt:Label res="res.label.forum.admin.entrance" key="end_date"/></td>
<td align="left"><input name="endDate" size=10 readonly>
<img src="../../util/calendar/calendar.gif" align=absMiddle style="cursor:hand" onClick="SelectDate('endDate','yyyy-mm-dd')"></td>
</tr>
<tr>
<td align="left"><lt:Label res="res.label.forum.admin.entrance" key="type"/></td>
<td align="left"><label>
<input name="boards" value="" type="hidden">
<textarea name="boardNames" cols="45" rows="3" readOnly wrap="yes" id="boardNames"></textarea>
<input class="SmallButton" onClick="openWinKinds()" type="button" value="<lt:Label res="res.label.forum.admin.entrance" key="sel_board"/>" name="button">
</label></td>
</tr>
<tr>
<td align="left"><lt:Label res="res.label.forum.admin.entrance" key="is_valid"/></td>
<td align="left"><input type=checkbox name="isValid" value="true"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="<lt:Label key="ok"/>">
<input type="reset" name="Submit2" value="<lt:Label key="reset"/>"></td>
</tr>
</form>
</table>
<br></td>
</tr>
</table>
</td> </tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -