Current File : /home/obabain/khb_obaba_in/BankReconciliation.jsp |
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@include file="Connection.jsp" %>
<%
Statement st=con.createStatement();
ResultSet rs = null;
%>
<!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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%@include file="master.jsp" %>
<form action="" method="post" id="contact" name="form1">
<section id="main">
<div class="container">
<div class="row" style="width:110%">
<div class="col-md-10" >
<div class="panel panel-default" >
<div class="panel-heading main-color-bg">
<h3 class="panel-title">Bank Reconciliation</h3>
</div>
<br><br><div class="panel-body" >
<table class="table">
<th >List of Bank Ledgers</th>
<%
rs=st.executeQuery("select * from account_ledger where under=15 order by ledger_name asc");
while(rs.next())
{
%>
<tr>
<td>
<a href="BankReconciliationById.jsp?Id=<%=rs.getString("l_id") %>"><%=rs.getString("ledger_name") %></a>
</td>
</tr>
<%} %>
</table>
<div class="modal-footer" id="contact_submit">
<input type="button" value="Back" style="background:#204b58;" class="pull-left btn btn-info" onclick="goBack()"/>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</form>
<%@include file="footer.jsp" %>
</body>
<script type="text/javascript">
function goBack() {
window.history.back();
};
</script>
</html>