meetcancle.jsp
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page language="java" pageEncoding="GBK"%>
  2. <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
  3. <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
  4. <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
  5. <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html:html lang="true">
  8. <head>
  9. <title>会议取消管理</title>
  10. <link href="${pageContext.request.contextPath}/Css_file/oa.css" rel="stylesheet" type="text/css" />
  11. <script>
  12. function check(){
  13. var mreason = document.getElementById("mreason").value;
  14. if(mreason==""){
  15. document.getElementById("reason").innerHTML="<font color="red">原因不能为空</font>";
  16. mreason.fcous();
  17. return
  18. }else{
  19. document.getElementById("reason").innerHTML="";
  20. }
  21. form1.submit();
  22. }
  23. </script>
  24. </head>
  25. <body>
  26. <html:form action="/meet.do?task=cancle" styleId="form1">
  27. <table width="100%" cellspacing="0" cellpadding="0" class="tr3 f_one">
  28. <html:hidden property="mid" />
  29. <html:hidden property="mtitle" />
  30. <html:hidden property="mstarttime" />
  31. <html:hidden property="mendtime" />
  32. <html:hidden property="mcontent" />
  33. <html:hidden property="munos" />
  34. <html:hidden property="rmid" />
  35. <html:hidden property="maffixname" />
  36. <html:hidden property="maffixpath" />
  37. <html:hidden property="mmemo" />
  38. <html:hidden property="mpeople" />
  39. <tr class="tr3 f_one">
  40. <th >
  41. 会议编号:
  42. </th>
  43. <th>
  44. <bean:write name="meetForm"  property="mid" />
  45. </th>
  46. </tr>
  47. <tr class="tr3 f_two">
  48. <th>
  49. 取消的原因:
  50. </th>
  51. <th>
  52. <html:textarea property="mreason" cols="50" rows="6"></html:textarea>
  53. <span id="reason"></span>
  54. </th>
  55. </tr>
  56. </table>
  57. </html:form>
  58. <div style="text-align:center;margin-bottom:25px;">
  59. <input type="button" class="btn" value=" 保存 " onclick="check();">
  60. <input type="button" class="btn" value=" 返回 " onclick="javascript:window.history.back();" />
  61. </div>
  62. </body>
  63. </html:html>