index.jsp

来自「一个基于java工厂模式的 的实现」· JSP 代码 · 共 35 行

JSP
35
字号
<%@page contentType="text/html" %><%@page pageEncoding="gb2312"%><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=gb2312">        <title>首页</title>    </head>    <body>        <table border="0" width="1000" align="center">                        <tr>                <td colspan="2">                    <jsp:include page="includes/head.jsp"/>                </td>                               </tr>            <tr>                <td height="600" valign="top" align="left">                    <jsp:include page="includes/left.jsp"/>                </td>                <td>                    <%                      out.println("index="+session.getAttribute("index"));                      out.println("online="+application.getAttribute("online"));                    %>                </td>            </tr>            <tr>                <td colspan="2">                    <jsp:include page="includes/foot.jsp"/>                </td>                            </tr>                    </table>            </body></html>

⌨️ 快捷键说明

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