Hi, I'm a intern as a web developer in a bank.. I really don't know much about this field but still im trying.
I am a given a project "Service Request Monitoring System".
IDE: Eclipse Europa
Database Mgt System: Postgre SQL 9.0
Server: Tomcat 6.0
my task now, is to make a printable version / hard copy of all the information and the status' request of the employee.
I made a hard.jsp ( How am I supposed to connect from the database and get all the needed data to insert it into the appropriate rows in the table? )
<%@page contentType="text/html" %>
<html>
<link rel=StyleSheet href="myStyle.css" type="text/css">
<body class="hard">
<table width = "709" cellpadding="10" border="1" align="center">
</table><div align="center"><img height="51" width="51" src="C:\Documents and Settings\Rachelle\Workspaces\try2\WebContent\abiLogo.gif"><br></div><table cellpadding="4" border="1" align="center">
<caption><font face="courier new" color="blue">ALLIED BANK <BR/>IT SERVICE REQUEST FORM</font><BR/><font size="2">ITSRF no.</font></caption>
<TR class="try">
<TD colspan=1> Requesting Unit : </TD><TD>Date ITSRF Prepared: </TD>
</TR>
<TR class="try">
<TD>Contact Person :
</TD>
<TD>Contact<br/> Number : </TD>
</TR>
<TR class="try">
<TD COLSPAN= 2>Description of Request :<br><br><blockquote></blockquote></TD>
</TR>
<TR class="try">
<TD COLSPAN = 2>Purpose / Justification :<br><br><blockquote></blockquote>
</TD>
</TR>
<TR class="try">
<TD COLSPAN="2">Approved By: Noted By:<br><blockquote>______________________ __________________<br/>Requesting Unit/Branch Group/DivisionHead<BR/></blockquote></TD>
</TR>
</table>
<br/>
<table width = "709" cellpadding="10" border="1" align="center">
<TR class="try">
<TD ROWSPAN="2" width = "500" valign="top" >Concerned Hit Department's<br/> Evaluation/Recommendation :<br><br><br><br>
</TD>
<TD valign ="top"> Date ITSRF Received :<br><br></TD>
</TR>
<TR class="try">
<TD> Assigned To: _________________<br> Project Manager<br></TD>
</TR>
<TR class="try">
<TD ROWSPAN="2" valign ="top">
Reason :<br><br><br><br><div align="right">___________________<br></div><div align="right">HIT Division Head <br></div></TD>
<TD>
<input type="checkbox" name="approved"> Approved
<input type="checkbox" name="disapproved">Disapproved
</TD>
</TR>
<TR class ="try">
<TD> Date :</TD>
</TR>
</table>
</body>
</html>
Thank You.