main.jsp

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

JSP
31
字号
<%@ page contentType="text/html; charset=gb2312"%>
<%
  String path=request.getContextPath();
  String basePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
<head>
  <title>未定义页面</title>
  <base href="<%=basePath%>">
  <link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body background="image/back.gif">
  <center>
    <table border="0" cellspacing="0" cellpadding="0">
       <tr><td align="center"><jsp:include page="/view/top.jsp"/></td></tr>
       <tr>
           <td>
               <table border="0" cellspacing="0" cellpadding="0" background="image/content_back.gif" width="760" height="464">
                   <tr><td align="right" colspan="2" height="40"><jsp:include page="/view/sub_menu.jsp"/></td></tr>
                   <tr>
                       <td width="207" align="right" valign="top"><jsp:include page="/view/left.jsp"/></td>
                       <td align="center"><%@ include file="UnDefine.jsp"%></td></tr>
                   </tr>
               </table>
           </td>
       </tr>
       <tr><td align="center"><jsp:include page="/view/end.jsp"/></td></tr>       
    </table>
  </center>
</body>
</html>

⌨️ 快捷键说明

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