This repository was archived by the owner on Dec 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdoctordetails.jsp
More file actions
51 lines (45 loc) · 1.91 KB
/
doctordetails.jsp
File metadata and controls
51 lines (45 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ page language="java" import="feelsafeHibernatePackage.*, feelsafeLogic.*, java.util.* " %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>employees.jsp</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<center>
<b><font color="#FF0000"> DOCTOR DETAILS</font> </b><br><br>
<%
FeelSafeLogic feelSafeLogic=new FeelSafeLogic();
List list=feelSafeLogic.readDoctor();
Employees employees;
%>
<table border="1">
<tr><td width="200"><font color="blue"><b> DOCTOR NAME</b></font></td><td width="200"><font color="blue"><b> FIELD SPECIALIZED</b></font></td><td width="200"><font color="blue"><b> CONSULTING HOURS</b></font></td></tr>
<%
for(Iterator i=list.iterator();i.hasNext();)
{
employees=(Employees)i.next();
%>
<tr><td><%=employees.getFirstname() %> <%=employees.getLastname() %></td><td><%=employees.getSpecialist() %></td><td><%=employees.getConsultinghours() %></td></tr>
<%
}
%>
</table>
</center>
</body>
</html:html>