1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ page isELIgnored="false" %>
- <%@ taglib uri="http://java.fckeditor.net" prefix="FCK"%>
- <%
- String path = request.getContextPath();
- %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="pragma" content="no-cache" />
- <meta http-equiv="cache-control" content="no-cache" />
- <meta http-equiv="expires" content="0" />
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" />
- <meta http-equiv="description" content="This is my page" />
-
- <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
-
- <script language="javascript">
-
- </script>
- </head>
- <body leftmargin="2" topmargin="9" background='<%=path %>/images/allbg.gif'>
- <form action="<%=path %>/catelogEdit.action" name="formAdd" method="post">
- <table width="98%" align="center" border="0" cellpadding="4" cellspacing="1" bgcolor="#CBD8AC" style="margin-bottom:8px">
- <tr bgcolor="#EEF4EA">
- <td colspan="3" background="<%=path %>/images/wbg.gif" class='title'><span>商品类别</span></td>
- </tr>
- <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
- <td width="25%" bgcolor="#FFFFFF" align="right">
- 分类名称:
- </td>
- <td width="75%" bgcolor="#FFFFFF" align="left">
- <input type="text" name="catelogName" style="width:340px" value="${catelog.catelogName }"/>
- </td>
- </tr>
- <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
- <td width="25%" bgcolor="#FFFFFF" align="right">
- 分类描述:
- </td>
- <td width="75%" bgcolor="#FFFFFF" align="left">
- <textarea rows="5" maxlength="200" name="catelogMiaoshu" style="width:340px" placeholder="请输入描述">${catelog.catelogMiaoshu }</textarea>
- </td>
- </tr>
- <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
- <td width="25%" bgcolor="#FFFFFF" align="right">
-
- </td>
- <td width="75%" bgcolor="#FFFFFF" align="left">
- <input type="hidden" name="catelogId" value="${requestScope.catelog.catelogId }"/>
- <input type="submit" value="提交"/>
- <input type="button" value="取 消" onClick="javascript :history.back(-1);"/>
-
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|