📄 saveproject.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<jsp:include page="../../cp_header.jsp" />
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="guide">
<tr><td><a href="#" onclick="parent.menu.location='admincp.jsp?action=menu'; parent.main.location='admincp.jsp?action=home';return false;">系统设置首页</a> » 添加版块设置方案</td></tr>
</table>
<br />
<form method="post"
action="admincp.jsp?action=settings&do=credits">
<table width="100%" border="0" cellpadding="0" cellspacing="0"
class="tableborder">
<tr class="header">
<td colspan="2">
版块设置方案保存
<a href="###" onclick="collapse_change('e524b9c0c96b7418')">
<img id="menuimg_e524b9c0c96b7418" src="${pageContext.request.contextPath}/images/admincp/menu_reduce.gif" border="0" style="float: right; margin-top: -12px; margin-right: 8px;" />
</a>
</td>
</tr>
<tbody id="menu_e524b9c0c96b7418" style="display: yes">
<c:if test="${project!=null}">
<input type="hidden" name="projectid" value="${project.id }">
<tr>
<td width="45%" class="altbg1">
<b>是否覆盖原有方案</b>
</td>
<td class="altbg2">
<input class="radio" type="radio" name="coverwith" value="1">
是
<input class="radio" type="radio" name="coverwith" value="0" checked>
否
</td>
</tr>
</c:if>
<tr>
<td width="45%" class="altbg1">
<b>方案选项</b>
<br />
<span class="smalltxt">选择要保存的设置项目,可按住 CTRL 多选</span>
</td>
<td class="altbg2">
<select name="savemethod" size="10" multiple="multiple"
style="width: 80%">
<option value="all">
全部
</option>
<option value="1" ${saveMethodVO.projectSetting==1?'selected':'' }>
积分项目设置
</option>
<option value="2" ${saveMethodVO.expressionsSetting==1?'selected':'' }>
积分公式设置
</option>
<option value="3" ${saveMethodVO.useSetting==1?'selected':'' }>
积分用途设置
</option>
</select>
</td>
</tr>
<tr>
<td width="45%" class="altbg1">
<b>方案名称</b>
<br />
<span class="smalltxt">设置该方案的名称,最大长度50个字节</span>
</td>
<td class="altbg2">
<input type="text" size="50" name="name" value="${project.name }" maxlength="50">
</td>
</tr>
<tr>
<td width="45%" class="altbg1" valign="top">
<b>方案描述</b>
<br />
<span class="smalltxt">设置该方案的描述,可以做为该方案的说明</span>
</td>
<td class="altbg2">
<img src="images/admincp/zoomin.gif" onmouseover="this.style.cursor='pointer'" onclick="zoomtextarea('description', 1)">
<img src="images/admincp/zoomout.gif" onmouseover="this.style.cursor='pointer'" onclick="zoomtextarea('description', 0)">
<br />
<textarea rows="6" name="description" id="description" cols="50" 限制textarea 长度 onKeyDown='if (this.value.length>=255){event.returnValue=false}'>${project.description }</textarea>
</td>
</tr>
</tbody>
</table>
<br />
<center>
<input class="button" type="submit" name="addsubmit" value="提 交">
</center>
</form>
<jsp:include page="../../cp_header.jsp" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -