meettemplet.jsp

来自「java web开发宝典源代码」· JSP 代码 · 共 30 行

JSP
30
字号
<%@ page contentType="text/html; charset=gb2312"%>
<%@ taglib uri="struts-html" prefix="html" %>
<%
  String path=request.getContextPath();
  String basePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  String mainPage=(String)request.getAttribute("mainPage");
  if(mainPage==null||mainPage.equals(""))
	  mainPage="/prompt.jsp";
%>
<html><head>  <title>会议管理</title>
  <base href="<%=basePath%>"/>
  <link rel="stylesheet" type="text/css" href="css/style.css">
</head><body>  <center>
      <table border="1" width="800" cellspacing="0" cellpadding="0" bordercolor="lightgrey" bordercolorlight="lightgrey" bordercolordark="white" rules="none" bgcolor="#F9FDFF">
          <tr><td align="center" colspan="2"><%@ include file="../view/top.jsp" %></td></tr>
          <tr>
              <td align="center" valign="top" rowspan="2"><jsp:include page="../view/left.jsp"/></td>
              <td align="center" valign="top" height="450" bgcolor="#F9FDFF">
                <jsp:include page="<%=mainPage%>"/>
              </td>
          </tr>
          <tr><td align="center" valign="bottom"><%@ include file="../view/end.jsp" %></td></tr>          
      </table>
  </center></body></html>

⌨️ 快捷键说明

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