📄 patientselect.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="${patientDoctorHref}" 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()%>/patientServlet?isfinished=0'">
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -