admin.jsp

来自「java 写的一个新闻发布系统」· JSP 代码 · 共 59 行

JSP
59
字号
<%@page language = "java" %><%@page contentType="text/html;charset=ISO-8859-1"%><%@page import = "java.util.*"%><jsp:useBean id="URL" class="java.lang.String" scope="request"/>   <% // http files path. %><jsp:useBean id="jahiaDisplayMessage" class="java.lang.String" scope="session"/><%    String jspSource = (String)request.getAttribute("jspSource");    String directMenu = null;  //(String)request.getAttribute("directMenu"); // Optional parameter%><html><head>    <title>Jahia Administration</title>    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">    <link rel="stylesheet" href="<%=URL%>/css/jahia.css" type="text/css">    <script language="javascript" src="<%=URL%>../javascript/jahia.js"></script>    </head><body class="install"><div align="center"><table cellpadding="1" cellspacing="0" width="630" border="0">    <tr>        <td bgcolor="#000000">            <table class="text" width="630" height="63" border="0" cellspacing="0" cellpadding="0" bgcolor="#92A4AD" onUnload="closeEngineWin()" onClose="closeEngineWin()">                <tr>                    <td><img src="<%=URL%>/images/header.gif" width="126" height="63" alt=""></td>                    <td width="100%" background="<%=URL%>/images/header_bg.gif">&nbsp;</td>                </tr>                <tr>                    <td colspan="2">                        <div align="center"><!----- - - -  -   -    -     header ends here     -    -   -  - - - -----><!-- jsp:include page="<%=directMenu%>" flush="true"/ --><jsp:include page="<%=jspSource%>" flush="true"/><!----- - - -  -   -    -    footer starts here    -    -   -  - - - ----->                        </div>                    </td>                </tr>                <tr>                    <td colspan="2" align="right">                        <br><br>                        <%=jahiaDisplayMessage%>&nbsp;&nbsp;&nbsp;<br>                        <br><br>                    </td>                </tr>            </table>        </td>    </tr></table></div></body></html>

⌨️ 快捷键说明

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