meetcancle.jsp
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@ page language="java" pageEncoding="GBK"%>
- <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
- <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
- <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
- <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html:html lang="true">
- <head>
- <title>会议取消管理</title>
- <link href="${pageContext.request.contextPath}/Css_file/oa.css" rel="stylesheet" type="text/css" />
- <script>
- function check(){
- var mreason = document.getElementById("mreason").value;
- if(mreason==""){
- document.getElementById("reason").innerHTML="<font color="red">原因不能为空</font>";
- mreason.fcous();
- return
- }else{
- document.getElementById("reason").innerHTML="";
- }
- form1.submit();
- }
- </script>
- </head>
- <body>
- <html:form action="/meet.do?task=cancle" styleId="form1">
- <table width="100%" cellspacing="0" cellpadding="0" class="tr3 f_one">
- <html:hidden property="mid" />
- <html:hidden property="mtitle" />
- <html:hidden property="mstarttime" />
- <html:hidden property="mendtime" />
- <html:hidden property="mcontent" />
- <html:hidden property="munos" />
- <html:hidden property="rmid" />
- <html:hidden property="maffixname" />
- <html:hidden property="maffixpath" />
- <html:hidden property="mmemo" />
- <html:hidden property="mpeople" />
- <tr class="tr3 f_one">
- <th >
- 会议编号:
- </th>
- <th>
- <bean:write name="meetForm" property="mid" />
- </th>
- </tr>
- <tr class="tr3 f_two">
- <th>
- 取消的原因:
- </th>
- <th>
- <html:textarea property="mreason" cols="50" rows="6"></html:textarea>
- <span id="reason"></span>
- </th>
- </tr>
- </table>
- </html:form>
- <div style="text-align:center;margin-bottom:25px;">
- <input type="button" class="btn" value=" 保存 " onclick="check();">
- <input type="button" class="btn" value=" 返回 " onclick="javascript:window.history.back();" />
- </div>
- </body>
- </html:html>