updateuser.jsp
来自「移动彩信管理平台」· JSP 代码 · 共 127 行
JSP
127 行
<%@ page contentType="text/html;charset=utf-8"%>
<%@ include file="../common/taglibs.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>公告内容页</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
</head>
<body>
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td width="8" align="left"><img src="images/pny_01.jpg" width="8" height="25" /></td>
<td width="80" align="center" background="images/pny_bg.gif" class="psize3">修改用户</td>
<td width="8" align="right"><img src="images/pny_02.jpg" width="8" height="25" /></td>
</tr>
</table></td>
</tr>
</table>
<table width="98%" border="0" cellspacing="1" cellpadding="4" style="border:1px solid #5C92B7;">
<tr>
<td height="20" align="center" bgcolor="#FFFFFF">
<form action="${webctx}/checkuser.do" method="post">
<table width="99%" border="0" cellspacing="1" cellpadding="4" style="border:1px solid #5C92B7;">
<tr>
<td height="20" align="left" bgcolor="#CEE8EA" class="psize4">单位属性:
<select name="groupId" style="WIDTH: 105px">
<option value="1" selected="selected">请选择类别</option>
<option value="2">平台管理员</option>
</select>
</td>
</tr>
<tr>
<td height="20" align="left" bgcolor="#F2FAFD" class="psize4">单位名称:
<input name="company" type="text" class="pleft" size="24"/>
</td>
</tr>
<tr>
<td height="20" align="left" bgcolor="#CEE8EA"><span class="psize4">用户状态:
<select name="state" style="WIDTH: 105px">
<option value="1" selected="selected">请选择类别</option>
<option value="1">可用</option>
<option value="2">待审核</option>
</select>
</span></td>
</tr>
<tr>
<td height="20" align="left" bgcolor="#F2FAFD"><span class="psize4">用户姓名:
<input name="name" type="text" class="pleft" size="24" />
</span></td>
</tr>
<tr>
<td height="20" align="left" bgcolor="#F2FAFD"><span class="psize4">信息修改:
<input type="radio" name="radiobutton" value="radiobutton" />
</span>是<span class="psize4">
<input type="radio" name="radiobutton" value="radiobutton" />
</span> 否 </td>
</tr>
<tr>
<td height="20" colspan="2" align="left"><input type="submit" class="pal" value="查询" /></td>
</tr>
</table>
</form>
<table width="99%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<table width="99%" border="0" cellspacing="1" cellpadding="4" style="border:1px solid #5C92B7;">
<tr>
<td align="center" bgcolor="#A6D5D9" class="psize4">单位名称</td>
<td align="center" bgcolor="#A6D5D9" class="psize4">联系人</td>
<td align="center" bgcolor="#A6D5D9" class="psize4">负责业务名称</td>
<td align="center" bgcolor="#A6D5D9" class="psize4">用户状态</td>
<td align="center" bgcolor="#A6D5D9" class="psize4">信息修改</td>
<td align="center" bgcolor="#A6D5D9" class="psize4">操作</td>
</tr>
<s:if test="${!empty cplist}">
<s:iterator value="cplist" id="info">
<tr>
<td align="center" bgcolor="#CEE8EA">
<s:property value="userCompany"/>
</td>
<td align="center" bgcolor="#CEE8EA">
<s:property value="userName"/></td>
<td align="center" bgcolor="#CEE8EA">
幽默笑话</td>
<td align="center" bgcolor="#CEE8EA">
<s:if test="${info.isUse}==0">
不可用
</s:if>
<s:if test="${info.isUse}==1">
可用
</s:if>
<s:if test="${info.isUse}==2">
待修改审批
</s:if>
</td>
<td align="center" bgcolor="#CEE8EA">否</td>
<td align="center" bgcolor="#CEE8EA">
【<a href="${webctx}/updateUser.do?userId=<s:property value="userId"/>&&groupId=<s:property value="userGroup"/> " class="ap2">修改</a>】</td>
</tr>
</s:iterator>
<tr>
<s:property value="href" escape="false"/>
</tr>
</s:if>
</table></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?