-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathtbalance.jsp
98 lines (69 loc) · 2.23 KB
/
tbalance.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<html>
<!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=utf-8">
<title>Global Banking ..</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
function ctck()
{
var sds = document.getElementById("dum");
}
</script>
</head>
<body>
<div id="top_links">
<div id="header">
<h1>Online Banking System<span class="style1"></span></h1>
<h1>For RIO Bank Co.Ltd<span class="style1"></span></h1>
<h2>ExtraOrdinary Service</h2>
<A href="index.html"><IMG SRC="images/home1.gif"></IMG></A>
</div>
<div id="navigation">
<ul>
<li><a href="createacc.jsp">NEW ACCOUNT</a></li>
<li><a href="balance1.jsp">BALANCE</a></li>
<li><a href="deposit1.jsp">DEPOSIT</a></li>
<li><a href="withdraw1.jsp">WITHDRAW</a></li>
<li><a href="transfer1.jsp">TRANSFER</a></li>
<li><a href="closeac1.jsp">CLOSE A/C</a></li>
<li><a href="logout.jsp">LOGOUT</a></li>
</ul>
</div>
<table style="width:897px; background:#FFFFFF; margin:0 auto;">
<tr >
<td width="300" valign="top" style="border-right:#666666 1px dotted;">
<div id="services"><h1>Services</h1><br>
<ul>
<li><a href="#">www.onlinebanking.com</a></li>
<li><a href="#">www.onlineservices.com </a></li>
<li><a href="#">www.onlinemoneytransfer.com/forum.jsp</a></li>
</ul>
</div>
</td>
<td width="1200" valign="top">
<%
%>
<table border="2" align="center" width="60%" height="60%" bgcolor="white">
<tr>
<td align="center" valign="middle" bgcolor="red"><h4>Accounts Info</h4></td>
</tr>
<tr>
<td>
<%
{
out.print("<table align='left' cellspacing='5' cellpadding='5'>");
out.print("<tr><th>TRANSACTION SUCCESSFUL</th></tr>");
out.print("<tr><th>THE TARGET ACCOUNT BALANCE IS</th></tr>");
out.print("<tr><th>"+request.getAttribute("target account A")+"</th></tr>");
out.print("<tr><th>REDUCED BALANCE IS</th></tr>");
out.print("<tr><th>"+request.getAttribute("account B")+"</th></tr>");
}
%>
</td>
</tr>
</table><%
%>
</table>
</html>