showdoctorapp.jsp

来自「jsp实现医院门诊系统」· JSP 代码 · 共 21 行

JSP
21
字号
<%@ page contentType="text/html; charset=gb2312"%>
<%@ page session="true" %>
<%
String use=(String)session.getAttribute("username");
if ( use == null || use.equals("") ){
	response.sendRedirect("login.jsp");
}
%>
<html>
<head>
<title>医生预约信息</title>

ID号:<%=use%>

</head>
<body >


    
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?