⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 viewmeetingroom.jsp

📁 一段很有意义的源码,看了就知道,不信试一试啊!
💻 JSP
字号:
<%@ 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>
	<html:base />
	<title>viewMeetingRoom.jsp</title>
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<link href="../../include/style.css" rel="stylesheet" type="text/css">
</head>
  
  <body>
    <html:form action="/newMeetingRoomAction">
    <table width="96%" border="0" align="center" cellpadding="4" cellspacing="1">
    <tr>
      <td bgcolor="#FFFFFF"> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr> 
            <td>&nbsp;<a href="#">主页</a>&gt;&gt; 会议管理</td>
          </tr>
        </table>
        <table width="98%" border="0" align="center">
    <tr> 
      <td height="34" class="big"><strong><img src="../../image/col.gif" width="7" height="18" align="absmiddle"> 
        </strong> <span class="high">会议室查看</span></td>
    </tr>
  </table>
        <table width="100%" border="1" bordercolordark="ffffff" bordercolorlight="cccccc" cellspacing="0" cellpadding="4">
          <tr> 
            <td width="20%" class="bg"><div align="center">会议室名称</div></td>
            <td width="80%" bgcolor="f7f7f7"><bean:write name="newMeetingRoomForm" property="name"/></td>
          </tr>
          <tr> 
            <td width="20%" class="bg"><div align="center">位  置</div></td>
            <td width="80%" bgcolor="f7f7f7"><bean:write name="newMeetingRoomForm" property="position"/></td>
          </tr>
          <tr> 
            <td width="20%" class="bg"><div align="center">服务人员</div></td>
            <td width="80%" bgcolor="f7f7f7"><bean:write name="newMeetingRoomForm" property="person"/></td>
          </tr>
          <tr> 
            <td width="20%" class="bg"><div align="center">容  量</div></td>
            <td width="80%" bgcolor="f7f7f7"><bean:write name="newMeetingRoomForm" property="capability"/></td>
          </tr>
          <tr> 
            <td width="20%" class="bg"><div align="center">设  备</div></td>
            <td width="80%" bgcolor="f7f7f7"><bean:write name="newMeetingRoomForm" property="equ"/></td>
          </tr>
          <tr> 
            <td width="20%" class="bg"><div align="center">是否停用</div></td>
            <td width="80%" bgcolor="f7f7f7">
            	<logic:equal name="newMeetingRoomForm" property="status" value="0">否</logic:equal>
            	<logic:equal name="newMeetingRoomForm" property="status" value="1">是</logic:equal>
            </td>
          </tr>
          <tr> 
            <td width="20%" class="bg"><div align="center">停用原因</div></td>
            <td width="80%" bgcolor="f7f7f7"><bean:write name="newMeetingRoomForm" property="status_r"/></td>
          </tr>
          <tr> 
            <td width="20%" class="bg"><div align="center">备  注</div></td>
            <td width="80%" bgcolor="f7f7f7"><bean:write name="newMeetingRoomForm" property="remark"/></td>
          </tr>
        </table>
        <table width="100%" border="0" cellspacing="0" cellpadding="4">
          <tr> 
            <td align="center">
            <input name="back" type="button" class="btn" onClick="history.back()" value="返回"></td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
    </html:form>
  </body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -