noticeEdit.jsp
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:3k
源码类别:

Applet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312"%>
  2. <%@ page import="java.sql.* "%>
  3. <jsp:useBean id="noticeBean" class="MyFly.Bean.noticeBean" scope="request"/>
  4. <%!
  5.    String Zhuan(String str)
  6.    {
  7.         str=str.replaceAll("&", "&amp;");
  8.         str=str.replaceAll(""", "&quot;");
  9.         str=str.replaceAll("<", "&lt;");
  10. str=str.replaceAll(">", "&gt;");
  11. return str;
  12.    }
  13. %>
  14. <%
  15.     String index=request.getParameter("index");
  16. if(noticeBean.getNew(Integer.parseInt(index)) == false)
  17. {
  18. out.println("<Script language=JavaScript>alert('编辑出错');javascript:history.back();</Script>");
  19. }
  20. %>
  21. <STYLE type=text/css>
  22. BODY {
  23. BACKGROUND: #799ae1; FONT: 9pt 宋体; MARGIN: 0px
  24. }
  25. TABLE {
  26. BORDER-LEFT: 1 px; BORDER-TOP: 1 px
  27. }
  28. TD {
  29. FONT: 12px 宋体;
  30. }
  31. IMG {
  32. BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: bottom
  33. }
  34. A {
  35. COLOR: #000000; FONT: 12px 宋体; TEXT-DECORATION: none
  36. }
  37. A:hover {
  38. COLOR: #428eff; TEXT-DECORATION: underline
  39. }
  40. .sec_menu {
  41. BACKGROUND: #d6dff7; BORDER-BOTTOM: white 1px solid; BORDER-LEFT: white 1px solid; BORDER-RIGHT: white 1px solid; OVERFLOW: hidden
  42. }
  43. .menu_title {
  44. }
  45. .menu_title SPAN {
  46. COLOR: #215dc6; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
  47. }
  48. .menu_title2 {
  49. }
  50. .menu_title2 SPAN {
  51. COLOR: #428eff; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
  52. }
  53. .style1 {color: #FF0000}
  54. </STYLE>
  55. <html>
  56. <head>
  57. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  58. <title>添加文章</title>
  59. </head>
  60. <body>
  61. <p>&nbsp;</p>
  62. <table width="585" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
  63.   <form action="noticeUpdate.jsp?index=<%=noticeBean.getNoticeID()%>" method="post" onSubmit = "">
  64.     <tr align="center"> 
  65.       <td height="23" colspan="2"> 
  66.         <table width="100%" border="0" cellpadding="0" cellspacing="0">
  67.           <tr> 
  68.             <td width="79%" height="33" align="center"><span class="style1">公告内容修改</span></td>
  69.           </tr>
  70.         </table>
  71.       </td>
  72.     </tr>
  73.     <tr align="center"> 
  74.       <td width="16%" height="121">公告内容</td>
  75.   
  76.       <td width="84%" align="left">&nbsp; 
  77.   <input type="hidden" name="content" value="<%=Zhuan(noticeBean.getContent())%>">
  78.       <iframe ID="eWebEditor1" src="../../../eWebEditor.jsp?id=content&style=standard" frameborder="0" scrolling="no" width="650" HEIGHT="350"></iframe> 
  79.   </td>
  80.     </tr>
  81.     <tr align="center"> 
  82.       <td height="76" colspan="2"><table width="100%" height="26" border="0" cellpadding="0" cellspacing="0">
  83.           <tr> 
  84.             <td width="16%" align="center">&nbsp;</td>
  85.             <td width="84%" align="center">&nbsp; <div align="left">
  86.   <input type="submit" value="更新">
  87. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  <input type="reset" value="重置"> 
  88.             </div></td>
  89.           </tr>
  90.       </table></td>
  91.     </tr>
  92.   </form>
  93. </table>
  94. </body>
  95. </html></textarea>