catelogAdd.jsp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%@ page isELIgnored="false" %>
  3. <%@ taglib uri="http://java.fckeditor.net" prefix="FCK"%>
  4. <%
  5. String path = request.getContextPath();
  6. %>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10. <meta http-equiv="pragma" content="no-cache" />
  11. <meta http-equiv="cache-control" content="no-cache" />
  12. <meta http-equiv="expires" content="0" />
  13. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" />
  14. <meta http-equiv="description" content="This is my page" />
  15. <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
  16. <script language="javascript">
  17. function closeOpen()
  18. {
  19. window.returnValue=false;
  20. window.close();
  21. }
  22. </script>
  23. </head>
  24. <body leftmargin="2" topmargin="9" background='<%=path %>/images/allbg.gif'>
  25. <form action="<%=path %>/catelogAdd.action" name="formAdd" method="post">
  26. <table width="98%" align="center" border="0" cellpadding="4" cellspacing="1" bgcolor="#CBD8AC" style="margin-bottom:8px">
  27. <tr bgcolor="#EEF4EA">
  28. <td colspan="3" background="<%=path %>/images/wbg.gif" class='title'><span>商品类别添加</span></td>
  29. </tr>
  30. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  31. <td width="25%" bgcolor="#FFFFFF" align="right">
  32. 分类名称:
  33. </td>
  34. <td width="75%" bgcolor="#FFFFFF" align="left">
  35. <input type="text" name="catelogName" style="width:340px" maxlength=""/>
  36. </td>
  37. </tr>
  38. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  39. <td width="25%" bgcolor="#FFFFFF" align="right">
  40. 分类描述:
  41. </td>
  42. <td width="75%" bgcolor="#FFFFFF" align="left">
  43. <textarea rows="5" maxlength="200" name="catelogMiaoshu" style="width:340px" placeholder="请输入描述"></textarea>
  44. </td>
  45. </tr>
  46. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  47. <td width="25%" bgcolor="#FFFFFF" align="right">
  48. &nbsp;
  49. </td>
  50. <td width="75%" bgcolor="#FFFFFF" align="left">
  51. <input type="submit" value="提交"/>&nbsp;
  52. <input type="reset" value="重置"/>&nbsp;
  53. </td>
  54. </tr>
  55. </table>
  56. </form>
  57. </body>
  58. </html>