123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <%@ page language="java" pageEncoding="UTF-8"%>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <HTML>
- <HEAD>
- <meta http-equiv="Content-Language" content="zh-cn">
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <LINK href="${pageContext.request.contextPath}/css/Style1.css" type="text/css" rel="stylesheet">
- </HEAD>
-
- <body>
- <!-- -->
- <form id="userAction_save_do" name="Form1" action="${pageContext.request.contextPath}/addProduct" method="post" enctype="multipart/form-data">
-
- <table cellSpacing="1" cellPadding="5" width="100%" align="center" bgColor="#eeeeee" style="border: 1px solid #8ba7e3" border="0">
- <tr>
- <td class="ta_01" align="center" bgColor="#afd1f3" colSpan="4"
- height="26">
- <strong><STRONG>添加商品</STRONG>
- </strong>
- </td>
- </tr>
- <tr>
- <td width="18%" align="center" bgColor="#f5fafe" class="ta_01">
- 商品名称:
- </td>
- <td class="ta_01" bgColor="#ffffff">
- <input type="text" name="pname" value="" id="userAction_save_do_logonName" class="bg"/>
- </td>
- <td width="18%" align="center" bgColor="#f5fafe" class="ta_01">
- 是否热门:
- </td>
- <td class="ta_01" bgColor="#ffffff">
- <select name="is_hot">
- <option value="1">是</option>
- <option value="0">否</option>
- </select>
- </td>
- </tr>
- <tr>
- <td width="18%" align="center" bgColor="#f5fafe" class="ta_01">
- 市场价格:
- </td>
- <td class="ta_01" bgColor="#ffffff">
- <input type="text" name="market_price" value="" id="userAction_save_do_logonName" class="bg"/>
- </td>
- <td width="18%" align="center" bgColor="#f5fafe" class="ta_01">
- 商城价格:
- </td>
- <td class="ta_01" bgColor="#ffffff">
- <input type="text" name="shop_price" value="" id="userAction_save_do_logonName" class="bg"/>
- </td>
- </tr>
- <tr>
- <td width="18%" align="center" bgColor="#f5fafe" class="ta_01">
- 商品图片:
- </td>
- <td class="ta_01" bgColor="#ffffff" colspan="3">
- <input type="file" name="pimage" />
- </td>
- </tr>
- <tr>
- <td width="18%" align="center" bgColor="#f5fafe" class="ta_01">
- 所属分类:
- </td>
- <td class="ta_01" bgColor="#ffffff" colspan="3">
- <select name="cid">
- <c:forEach items="${list }" var="c">
- <option value="${c.cid }">${c.cname }</option>
- </c:forEach>
- </select>
- </td>
- </tr>
- <tr>
- <td width="18%" align="center" bgColor="#f5fafe" class="ta_01">
- 商品描述:
- </td>
- <td class="ta_01" bgColor="#ffffff" colspan="3">
- <textarea name="pdesc" rows="5" cols="30"></textarea>
- </td>
- </tr>
- <tr>
- <td class="ta_01" style="WIDTH: 100%" align="center"
- bgColor="#f5fafe" colSpan="4">
- <button type="submit" id="userAction_save_do_submit" value="确定" class="button_ok">
- 确定
- </button>
- <FONT face="宋体"> </FONT>
- <button type="reset" value="重置" class="button_cancel">重置</button>
- <FONT face="宋体"> </FONT>
- <INPUT class="button_ok" type="button" onclick="history.go(-1)" value="返回"/>
- <span id="Label1"></span>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </HTML>
|