?? patientsselect.jsp
字號:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head>
<title>17醫院病人查看病人信息--關愛健康,為您助行</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/Css/LightBlue_Css.css"/>
</head>
<body>
<form>
<table class="simple textCss">
<tr>
<th colspan="3" class="title">查看病人信息</th>
</tr>
<c:forEach items="${patientSelect}" var="pa">
<tr>
<td width="20%" align="right">科室名稱:</td>
<td width="40%" align="left">
<input type="text" value="${pa.mcName}" class="txt">
</td>
</tr>
<tr>
<td width="20%" align="right">掛號號碼:</td>
<td width="40%" align="left">
<input type="text" value="${pa.patientNo}" class="txt"></td>
</tr>
<tr>
<td width="20%" align="right">姓名:</td>
<td width="40%" align="left">
<input type="text" value="${pa.name}" class="txt"></td>
</tr>
<tr>
<td width="20%" align="right">性別:</td>
<td width="40%" align="left">
<input type="text" value="${pa.sex}" class="txt"></td>
</tr>
<tr>
<td width="20%" align="right">年齡:</td>
<td width="40%" align="left">
<input type="text" name="age" value="${pa.age}" class="txt"></td>
</tr>
</c:forEach>
<tr>
<td colspan="2" align="center" width="60%">
<input type="button" value="返回" class="buttonClass"
onclick="window.location.href='<%=request.getContextPath()%>/receiptServlet?opertion=4&num=5&isfinished=false'">
</td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -