pinlunEdit.jsp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. String id = request.getParameter("id");
  7. %>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10. <head>
  11. <meta http-equiv="pragma" content="no-cache" />
  12. <meta http-equiv="cache-control" content="no-cache" />
  13. <meta http-equiv="expires" content="0" />
  14. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" />
  15. <meta http-equiv="description" content="This is my page" />
  16. <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
  17. <script language="javascript">
  18. </script>
  19. </head>
  20. <body leftmargin="2" topmargin="9" background='<%=path %>/images/allbg.gif'>
  21. <form action="<%=path %>/huifuPinlun.action?id=<%=id%>" name="formAdd" method="post">
  22. <table width="98%" align="center" border="0" cellpadding="4" cellspacing="1" bgcolor="#CBD8AC" style="margin-bottom:8px">
  23. <tr bgcolor="#EEF4EA">
  24. <td colspan="3" background="<%=path %>/images/wbg.gif" class='title'><span>回复</span></td>
  25. </tr>
  26. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  27. <td width="25%" bgcolor="#FFFFFF" align="right">
  28. 回复:
  29. </td>
  30. <td width="75%" bgcolor="#FFFFFF" align="left">
  31. <textarea rows="5" maxlength="200" name="huifu" style="width:340px" placeholder="请输入回复"> </textarea>
  32. </td>
  33. </tr>
  34. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  35. <td width="25%" bgcolor="#FFFFFF" align="right">
  36. &nbsp;
  37. </td>
  38. <td width="75%" bgcolor="#FFFFFF" align="left">
  39. <input type="submit" value="提交"/>&nbsp;
  40. <input type="button" value="取&nbsp;&nbsp;消" onClick="javascript :history.back(-1);"/>
  41. &nbsp;
  42. </td>
  43. </tr>
  44. </table>
  45. </form>
  46. </body>
  47. </html>