| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <%@ include file="../common/header.jsp" %>
- <script type="text/javascript" language="javascript">
- <!--
- function doBack(){
- document.forms.upload.action.value="upload";
- document.forms.upload.submit();
- }
- -->
- </script>
- <form name="upload" action="upload.do" method="POST" enctype="multipart/form-data" >
- <input type="hidden" name="action"/>
- <input type="hidden" name="sequence"/>
- <input type="hidden" name="redirect" value="create"/>
-
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <td class="titleHeader" align="left"><bean:message key="project.upload.key"/> FILE TARIF</td>
- </table>
-
- <table border="0" width="98%" align="center" class="td" cellpadding="2" cellspacing="1">
- <tr>
- <td>
- <font color="#FF0000">*</font>
- <b>File Has Been Upload Successfully</b>
- <logic:notEmpty name="resultUpload">
- <br/><br/>
- <bean:write name="resultUpload" filter="false"/>
- </logic:notEmpty>
- </td>
- </tr>
- <tr>
- <td width="30%"></td>
- <td width="10"></td>
- <td width="30%"><input type="button" value=<bean:message key="button.back"/> onclick="doBack();" ></td>
- <td colspan="4"> </td>
- </tr>
- </table>
- </FORM>
- <%@ include file="../common/footer.jsp" %>
|