EditDownLoad.jsp~3~
资源名称:shihua.rar [点击查看]
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:4k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- <%@ page contentType="text/html; charset=GBK" %>
- <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
- <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
- <%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html-el" %>
- <html>
- <head>
- <title>EditDownLoad</title>
- <script type="text/javascript">
- function SaveAction(){
- var form = document.all.downLoadActionForm;
- form.action = "<%=request.getContextPath()%>/Manage/DownLoad.do?todo=EditDownLoad&Type=" + <c:out value="${param.Type}" />;
- form.submit();
- }
- </script>
- <link href="<%=request.getContextPath() %>/Manage/Css/skinv2.0.css" rel="stylesheet" type="text/css" />
- </head>
- <body bgcolor="#ffffff">
- <html:form method="post" action="/Manage/DownLoad.do?todo=EditDownLoad" enctype="multipart/form-data">
- <table cellspacing="0" cellpadding="0" width="100%" border="0">
- <tr bgcolor="#cfdbe8">
- <td style="WIDTH: 20px" width="20" bgcolor="#cfdbe8" height="19"> <img height="10" src="<%=request.getContextPath() %>/Manage/images/icon.gif" width="12" alt="" /></td>
- <td valign="middle" bgcolor="#cfdbe8" colspan="2"> <c:out value="${MainTitle}" /></td>
- </tr>
- <tr>
- <td style="HEIGHT: 31px" valign="top" align="left" height="80"> </td>
- <td style="HEIGHT: 31px" valign="middle" align="left" colspan="2">
- <img src="<%=request.getContextPath() %>/Manage/images/edit.gif" align="middle" alt="" /> <c:out value="${ChildTitle}" />
- </td>
- </tr>
- <tr>
- <td style="HEIGHT: 1px" valign="top" align="left"></td>
- <td style="HEIGHT: 1px" valign="top" align="left" width="820" bgcolor="#cfdbe8"></td>
- <td style="HEIGHT: 1px; width: 144px;" valign="top" align="left"></td>
- </tr>
- <tr>
- <td style="HEIGHT: 381px" valign="top" align="left"></td>
- <td style="HEIGHT: 381px" valign="top" align="left" colspan="2">
- <br/>
- <table align="left" bgcolor="#cccccc" border="0" cellpadding="1" cellspacing="1" width="98%">
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 文件中文标题:
- </td>
- <td style="height: 23px">
- <input type="text" id="txtTitle" name="cnTitle" value='<c:out value="${dl.dow_Title}" />' />
- <input type="hidden" id="hidID" name="id" value='<c:out value="${dl.dow_ID}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 排列顺序:
- </td>
- <td style="height: 23px">
- <input type="text" id="txtTitle" name="order" value='<c:out value="${dl.dow_Order}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 摘要说明:
- </td>
- <td style="height: 23px">
- <textarea cols="50" rows="4" name="summary"><c:out value="${dl.dow_Summary}" /></textarea>
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 图片上传:
- </td>
- <td style="height: 23px">
- <a href=""><c:out value="${dl.imageUp.filename}" /></a>
- <html:file property="downLoadImg" size="30"></html:file>
- <input type="hidden" name="fileID" value='<c:out value="${dl.imageUp.id}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 文件上传:
- </td>
- <td style="height: 23px">
- <a href=""><c:out value="${dl.fileUp.filename}" /></a>
- <html:file property="image" size="30"></html:file>
- <input type="hidden" name="imageID" value='<c:out value="${dl.fileUp.id}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff" align="center">
- <td colspan="2">
- <input type="button" id="btnSave" value="保 存" onclick="SaveAction();" />
- <input type="submit" value="返 回" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </html:form>
- </body>
- </html>