?? updatemedicalcourses.jsp
字號:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=GBK">
<title>職稱修改</title>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/Css/LightBlue_Css.css"/>
</head>
<body>
<form action="<%=request.getContextPath()%>/medicalcoursesServlets?opertion=3" method="post">
<%
String id=request.getParameter("id");
String name1=request.getParameter("name");
String name=new String(name1.trim().getBytes("iso-8859-1"),"gbk");
String type=request.getParameter("type");
if(type==null||type==""||type=="1"){
type="內科";
}else{
type="外科";
}
%>
<table class="simple textCss">
<tr>
<td colspan="3" class="title" align="center"><h3><font face="隸書">修改科別信息</font></h3></td>
</tr>
<tr>
<td width="30%%" align="right" class="title">科別ID:</td>
<td><input type="text" name="id" value=<%=id%> readonly class="txt"></td>
</tr>
<tr>
<td width="30%%" align="right" class="title">科別名稱:</td>
<td><input type="text" name="name" value=<%=name%> class="txt"></td>
</tr>
<tr>
<td width="30%%" align="right" class="title">科別類型:</td>
<td><input type="text" name="type" value=<%=type%> class="txt"></td>
</tr>
<tr>
<td colspan="3" align="center">
<input type="submit" value="修改" class="buttonClass">
<input type="button" value="返回" class="buttonClass"
onclick="window.location.href='<%=request.getContextPath()%>/medicalcoursesServlets?opertion=4'">
</td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -