EditProduct.jsp~1~
资源名称: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>EditProduct</title>
- <link href="Css/skinv2.0.css" rel="stylesheet" type="text/css" />
- </head>
- <body bgcolor="#ffffff">
- <html:form method="post" action="/Manage/Product.do?todo=EditProduct" 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"> 生产经营栏目</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="" /> 编辑产品信息
- </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 size="50" type="text" id="txtTitle" name="name" value='<c:out value="${pro.pro_Name}" />' />
- <input type="hidden" id="hidID" name="id" value='<c:out value="${pro.pro_ID}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 产品英文名:
- </td>
- <td style="height: 23px">
- <input size="50" type="text" name="enName" value='<c:out value="${pro.pro_EnName}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 产品图片:
- </td>
- <td style="height: 23px">
- <a href=""><c:out value="${pro.image.filename}" /></a>
- <html:file property="productImg" size="30"></html:file>
- <input type="hidden" name="imageID" value='<c:out value="${pro.image.id}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 分子式:
- </td>
- <td style="height: 23px">
- <input type="text" name="molecular" value='<c:out value="${pro.pro_Molecular}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 形态:
- </td>
- <td style="height: 23px">
- <textarea cols="50" rows="4" name="modality"><c:out value="${pro.pro_Modality}" /></textarea>
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 用途:
- </td>
- <td style="height: 23px">
- <textarea cols="50" rows="4" name="action"><c:out value="${pro.pro_Action}" /></textarea>
- </td>
- </tr>
- <tr bgcolor="#ffffff" align="center">
- <td colspan="2">
- <input type="submit" id="btnSave" value="保 存" onclick="return SaveAction();" />
- <input type="submit" value="返 回" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </html:form>
- </body>
- </html>