|
|
What this is
This file is included in the DevDaily.com
"Java Source Code
Warehouse" project. The intent of this project is to help you "Learn
Java by Example" TM.
Other links
The source code
<form>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td width="31%">Subject* |
<td width="69%">
<%= libraryitem.getItemSubject() %>
</td>
</tr>
<tr>
<td width="31%" height="21">Media*
<td width="69%" height="21">
<%= libraryitem.getItemMediaType() %>
</td>
</tr>
<tr>
<td width="31%">Language*
<td width="69%">
<%= libraryitem.getItemLanguage() %>
</td>
</tr>
<tr>
<td width="31%">
</tr>
<tr>
<td width="31%">Call Number
<td width="69%">
<% out.println(libraryitem.getItemCallNumber()); %>
</td>
</tr>
<tr>
<td width="31%"> Title*
<td width="69%">
<textarea name="itemTitle" cols="50" rows="3">
</td>
</tr>
<tr>
<td width="31%">Brief Description
<td width="69%">
<textarea name="itemBriefDesc" cols="50" rows="4">
</td>
</tr>
<tr>
<td width="31%">Author
<td width="69%">
<textarea name="itemAuthor" cols="50" rows="4">
</td>
</tr>
<tr>
<td width="31%">Keyword*
<td width="69%">
<textarea name="itemKeyword" cols="50" rows="2">
</td>
</tr>
<tr>
<td width="31%">Publisher Name
<td width="69%">
<jsp:getProperty name="libraryitem" property="itemPublisherName" />
</td>
</tr>
<tr>
<td width="31%" height="32">ISBN
<td width="69%" height="32">
<jsp:getProperty name="libraryitem" property="itemISBN" />
</td>
</tr>
<tr>
<td width="31%">Length
<td width="69%">
<jsp:getProperty name="libraryitem" property="itemLength" />
Hour(s) or Page(s)</td>
</tr>
<tr>
<td width="31%">Year
<td width="69%">
<jsp:getProperty name="libraryitem" property="itemYear" />
</td>
</tr>
<tr>
<td width="31%">Total Quantity*
<td width="69%">
<%= libraryitem.getItemTotQuantity() %>
</td>
</tr>
<tr>
<td width="31%">Total Available*
<td width="69%">
<% out.println(libraryitem.getItemTotAvailable()); %>
</td>
</tr>
<tr>
<tr>
<td width="31%">Total Borrow Out
<td width="69%">
<% out.println(libraryitem.getItemTotBorrow()); %>
</td>
</tr>
<td width="31%">Total Reserve*
<td width="69%">
<% out.println(libraryitem.getItemTotReserve()); %>
</td>
</tr>
</table>
</form>