pcardtemplet.jsp

来自「java web开发技术方案宝典」· JSP 代码 · 共 29 行

JSP
29
字号
<%@ page contentType="text/html;charset=gb2312"%>
<%@ taglib uri="struts-html" prefix="html" %>
<%@ taglib uri="struts-logic" prefix="logic" %>
<%
  String path=request.getContextPath();
  String basePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  String mainPage=(String)request.getAttribute("mainPage");
  if(mainPage==null)
	  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"><jsp:include page="<%=mainPage%>"/></td>
          </tr>
          <tr><td align="center"><%@ include file="../view/end.jsp" %></td></tr>          
      </table>
  </center></body></html>

⌨️ 快捷键说明

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