?? patient.jsp
字號(hào):
<%@ page language="java"pageEncoding="GBK"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>My JSP 'patient.jsp' starting page</title>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/Css/LightBlue_Css.css"/>
<%
pageContext.setAttribute("patient",request.getAttribute("patientList"));
%>
</head>
<body>
<form action="<%=request.getContextPath()%>/patientServlet?operation=3" method="post">
<table class="simple textCss">
<tr>
<th align="center" colspan="2">病人信息</th>
</tr>
<tr>
<th width="30%" align="right">編 號(hào):</th>
<td><input type="text" name="oid" value="${patient.oid }" ReadOnly=true class="txt"></td>
</tr>
<tr>
<th width="30%" align="right">住院 號(hào):</th>
<td><input type="text" name="patientNo" value="${patient.patientNo }" class="txt"></td>
</tr>
<tr>
<th width="30%" align="right">姓 名:</th>
<td><input type="text" name="name" value="${patient.name }" class="txt"></td>
</tr>
<tr>
<th width="30%" align="right">性 別:</th>
<td><input type="radio" name="r1">男<input type="radio" name="r1">女</td>
</tr>
<tr>
<th width="30%" align="right">地 址:</th>
<td><input type="text" name="address" value="${patient.address }" class="txt"></td>
</tr>
<tr>
<th width="30%" align="right">年 齡:</th>
<td><input type="text" name="age" value="${patient.age }" class="txt"></td>
</tr>
<tr>
<th width="30%" align="right">是否處理:</th>
<td>
<input type="radio" name="r">是
<input type="radio" name="r">否</td>
</tr>
<tr>
<th width="30%" align="right">科別 ID:</th>
<td><input type="text" name="mcID" value="${patient.mcID }" ReadOnly=true class="txt"></td>
</tr>
<tr>
<th width="30%" align="right">科 別:</th>
<td>
<select name="aa">
<option name="a" value="皮膚科" selected>皮膚科</option>
<option name="b" value="骨科" selected>骨科</option>
<option name="c" value="ICU" selected>ICU</option>
<option name="d" value="口腔科" selected>口腔科</option>
</select>
</td>
</tr>
<tr>
<td align="center" colspan="2">
<input type="submit" value="提交" class="buttonClass">
<input type="reset" value="重置" class="buttonClass"></td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -