📄 mod.jsp
字号:
<%@ page contentType="text/html; charset=GBK"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<%@ include file="/common/common.inc"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet"
href="<%=path%>/resources/css/validation/style.css" type="text/css" />
<script type="text/javascript">
cmdEdit = '/admin/usergroup/usergroupAction.do';
function check_value(){return true;}
</script>
</head>
<body>
<html:form styleId="formUnify"
action="/admin/usergroup/usergroupAction.do" method="post" styleClass="required-validate">
<fieldset>
<legend>
增加用户组
</legend>
<div class="form-row">
<div class="field-label">
<label for="field1-t4">
用户组名
</label>
:
</div>
<div class="field-widget">
<html:text property="groupname"
styleClass="required"
value="${param.groupname}"></html:text>
</div>
</div>
<div class="form-row">
<div class="field-label">
<label for="field2-t4">
用户组描述
</label>
:
</div>
<div class="field-label">
<html:textarea property="description"
rows="5"
cols="30"
styleClass="required"
value="${param.description}"></html:textarea>
</div>
</div>
</fieldset>
<html:hidden property="id" value="${param.id}"/>
<input type="submit" value="修改" ID="_button_save" NAME="_button_save"
onclick="SwitchPage.doEdit()">
</html:form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -