76 lines
1.9 KiB
Plaintext
76 lines
1.9 KiB
Plaintext
<%@ page language="java"%>
|
|
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
|
|
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
|
|
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
|
|
|
|
<html:html locale="true">
|
|
<head>
|
|
<html:base />
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
|
|
<title>Medien Application</title>
|
|
</head>
|
|
<body>
|
|
<table border="0" width="100%" height="100%">
|
|
<colgroup>
|
|
<col width="10%">
|
|
<col width="80%">
|
|
<col width="10%">
|
|
</colgroup>
|
|
<!-- Kopfbereich -->
|
|
<tr bgcolor="lightgrey" height="10%">
|
|
<td align="center" colspan="3"><b>Show CD list</b></td>
|
|
</tr>
|
|
<!-- Hauptbereich -->
|
|
<tr>
|
|
<!-- Linker Navigationsbereich -->
|
|
<td bgcolor="orange" valign="top" width="100">
|
|
<% out.println(com.peetz.medien.navigation.MenuLinks.getInstance().toString()); %>
|
|
</td>
|
|
<td bgcolor="lightyellow" valign="top">
|
|
<%-- create a html form --%>
|
|
<html:form action="cdEdit">
|
|
<%-- print out the form data --%>
|
|
<table border="1">
|
|
<tbody>
|
|
<tr>
|
|
<td>Category:</td>
|
|
<td><html:text property="category" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Album:</td>
|
|
<td><html:text property="album" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Artist:</td>
|
|
<td><html:text property="artist" /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<%-- set the parameter for the dispatch action --%>
|
|
<html:hidden property="do" value="saveCD" />
|
|
|
|
<br>
|
|
<%-- submit and back button --%>
|
|
<html:button property="back"
|
|
onclick="history.back();">
|
|
Back
|
|
</html:button>
|
|
|
|
<html:submit>Save</html:submit>
|
|
</html:form>
|
|
</td>
|
|
<!-- Rechter Navigationsbereich -->
|
|
<td bgcolor="orange" with="15%"> </td>
|
|
</tr>
|
|
<!-- Fussbereich -->
|
|
<tr bgcolor="lightgrey" height="10%">
|
|
<td align="right" colspan="3">
|
|
<p>Ingenieurbüro Thomas Peetz</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html:html>
|