| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <%@ include file="../common/header.jsp" %>
- <script type="text/javascript" language="javascript">
- <!--
- function doUploadOk(){
- var x = window.confirm("<bean:message key="confirm.upload"/>")
- if (x) {
- document.forms.upload.action.value="upload_ok";
- document.forms.upload.submit();
- doDisable(document.forms.upload, "button");
- }
- }
- -->
- </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">
- <tr>
- <td class="titleHeader" align="left"><bean:message key="project.upload.key"/> FILE TARIF</td>
- </tr>
- </table>
-
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr>
- <td align="center">
- <table width="100%" border="0" cellspacing="1" cellpadding="2">
- <tr><td colspan="7"><html:errors/></td></tr>
- <tr>
- <td width="15%" valign="top"><bean:message key="ftp.file.key" /></td>
- <td valign="top">:</td>
- <td valign="top">
- <div align="left">
- <input type="file" name="uploadFile" value="<logic:notEmpty name="uploadFile_ftp"><bean:write name="uploadFile_ftp" /></logic:notEmpty>">
- </div>
- </td>
- <td colspan="4"> </td>
- </tr>
- <tr>
- <td width="15%"></td>
- <td width="10"></td>
- <td width="30%"><input type="button" value=<bean:message key="button.upload"/> onclick="doUploadOk();" ></td>
- <td colspan="4"> </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <br>
- <table border="0" width="98%" align="center" class="td" cellpadding="2" cellspacing="1">
- <tr>
- <td>
- <font color="#FF0000">*</font>
- <b>File Upload Should be Text Format</b>
- </td>
- </tr>
- </table>
- </FORM>
- <%@ include file="../common/footer.jsp" %>
|