forked from rvolvo/Online-Bank-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperties.jsp
37 lines (34 loc) · 993 Bytes
/
properties.jsp
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
<%@ page language="java" contentType="text/html; charset=windows-1255" pageEncoding="windows-1255"%>
<%@page import="java.util.Map"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255">
<title>Properties and Commissions</title>
<link rel="icon" type="image/png" href="pics/favIcon.jpg">
</head>
<body>
<jsp:directive.include file="/main.jsp" />
<h4>Properties and Commissions </h4>
<table id="propertiesTable">
<tr>
<th> Property Key </th>
<th> Property Value </th>
</tr>
<%
Map<String, String> propMap = (Map<String, String>)session.getAttribute("propMap");
for (Map.Entry<String, String> entry : propMap.entrySet())
{
String key = entry.getKey();
String value = entry.getValue();
%>
<tr>
<td> <%= key %> </td>
<td><%= value %></td>
</tr>
<%
}
%>
</table>
</body>
</html>