updatepatientinfo.jsp
来自「一个小型的医疗管理系统」· JSP 代码 · 共 41 行
JSP
41 行
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<html>
<head>
<title>医院管理系统</title>
<meta http-equiv="Content-Type" content="text/jsp; charset=gbk">
</head>
<body>
<jsp:include page="title.jsp"></jsp:include>
<table>
<tr>
<td width="140" align="left" valign="top">
<jsp:include page="menu.jsp"></jsp:include>
</td>
<td width="585" align="left" valign="top">
<center><html:form action="/updatePatientInfo">
condition : <html:text property="condition"/><html:errors property="condition"/><br/>
in_date : <html:text property="in_date"/><html:errors property="in_date"/><br/>
out_date : <html:text property="out_date"/><html:errors property="out_date"/><br/>
stayIn : <html:text property="stayIn"/><html:errors property="stayIn"/><br/>
true_out : <html:text property="true_out"/><html:errors property="true_out"/><br/>
waitDate : <html:text property="waitDate"/><html:errors property="waitDate"/><br/>
<html:submit/><html:cancel/>
</html:form></center>
</td>
</tr>
</table>
<jsp:include page="../foot.html"></jsp:include>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?