gonggaoAdd.jsp 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. </head>
  17. <body leftmargin="2" topmargin="9" background='<%=path %>/images/allbg.gif'>
  18. <form action="<%=path %>/gonggaoAdd.action" name="formAdd" method="post">
  19. <table width="98%" align="center" border="0" cellpadding="4" cellspacing="1" bgcolor="#CBD8AC" style="margin-bottom:8px">
  20. <tr bgcolor="#EEF4EA">
  21. <td colspan="3" background="<%=path %>/images/wbg.gif" class='title'><span>添加公告</span></td>
  22. </tr>
  23. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  24. <td width="25%" bgcolor="#FFFFFF" align="right">
  25. 标题:
  26. </td>
  27. <td width="75%" bgcolor="#FFFFFF" align="left">
  28. <input type="text" name="title" style="width:340px" maxlength=""/>
  29. </td>
  30. </tr>
  31. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  32. <td width="25%" bgcolor="#FFFFFF" align="right">
  33. 内容:
  34. </td>
  35. <td width="75%" bgcolor="#FFFFFF" align="left">
  36. <textarea rows="5" maxlength="200" name="content" style="width:340px" placeholder="请输入内容"></textarea>
  37. </td>
  38. </tr>
  39. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  40. <td width="25%" bgcolor="#FFFFFF" align="right">
  41. &nbsp;
  42. </td>
  43. <td width="75%" bgcolor="#FFFFFF" align="left">
  44. <input type="submit" value="提交"/>&nbsp;
  45. <input type="reset" value="重置"/>&nbsp;
  46. </td>
  47. </tr>
  48. </table>
  49. </form>
  50. </body>
  51. </html>