updatepost.jsp

来自「HIS医院信息系统」· JSP 代码 · 共 37 行

JSP
37
字号
<%@ page language="java" pageEncoding="GBk"%>
<html>
	<head>
		<title>职称修改</title>
		<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/Css/LightBlue_Css.css"/>    
	</head>
	<body>
	<%
		String id=request.getParameter("id");
		String name=request.getParameter("name");
		String name1=new String(name.trim().getBytes("iso-8859-1"),"gbk");
	 %>
	<form action="<%=request.getContextPath()%>/postServlets?opertion=3" method="post">
	<table class="simple textCss">
		<tr>
			<td colspan="2" align="center" class="title">修改职称信息</td>
		</tr>
		<tr>
			<td align="right" class="title" width="30%">编号:</td>
			<td><input type="text" name="id" value=<%=id%> class="txt"></td>
		</tr>
		<tr>
			<td align="right" class="title" width="30%">职称名称:</td>
			<td><input type="text" name="name" value="<%=name1%>" class="txt"></td>
		</tr>
		<tr>
			<td colspan="2" align="center">
				<input type="submit" value="修改" class="buttonClass">
				<input type="button" value="返回" class="buttonClass"					
					onclick="window.location.href='<%=request.getContextPath()%>/postServlets?opertion=4'">				
			</td>
		</tr>	
	</table>					
	</form>
	</body>
</html>

⌨️ 快捷键说明

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