📄 updatepost.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -