⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 includer.jsp

📁 java 写的一个新闻发布系统
💻 JSP
字号:
<%@page language = "java" %><%@ page import="org.jahia.bin.*" %><jsp:useBean id="url"        class="java.lang.String"   scope="request"/>          <% // http files path. %><jsp:useBean id="focus"      class="java.lang.String"   scope="request"/>          <% // autofocus input name in the form. %><jsp:useBean id="title"      class="java.lang.String"   scope="request"/>          <% // title of this configuration step. %><jsp:useBean id="msg"        class="java.lang.String"   scope="request"/>          <% // bottom message [copyright or advertise]. %><%    String  jsp         = (String) request.getParameter("jsp") + ".jsp";    Integer navigator = (Integer) request.getAttribute("navigator");    int     input_size  = navigator.intValue() == 0 ? 65 : 40;    String baseURL = response.encodeURL(request.getContextPath() + JahiaConfigurationWizard.getServletPath() + "/");    request.setAttribute( "input", new Integer(input_size).toString() );%><html><head>    <title>Jahia Configuration Wizard</title>    <link rel="stylesheet" href="<%=url%>/css/jahia.css" type="text/css">    <script language="javascript" src="<%=url%>/../javascript/jahia.js"></script>    <script language="javascript">        function focus() {          <%if(!focus.equals("-none-")){%>            document.formular.<%=focus%>.focus();          <%}%>        }        function submitFormular(arg,dest)        {            document.formular.action= '<%=baseURL%>?call='+arg+'&go='+dest;            document.formular.method='post';            document.formular.submit();        }    </script></head><body class="install" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="focus();"><center><br><br><br><table cellpadding="1" cellspacing="0" bgcolor="#000000" width="530" border="0"><tr>    <td>        <table cellpadding="0" cellspacing="0" width="530" border="0">        <tr>            <td bgcolor="#92A4AD">                <table width="100%" height="63" border="0" cellspacing="0" cellpadding="0">                <tr>                    <td width="126" height="63"><img src="<%=url%>/images/header.gif" width="126" height="63" alt=""></td>                    <td width="100%" height="63" background="<%=url%>/images/header_bg.gif">&nbsp;</td>                </tr>                <tr>                    <td align="right" class="text" colspan="2">::&nbsp;&nbsp;<%=title%>&nbsp;&nbsp;::&nbsp;&nbsp;&nbsp;&nbsp;</td>                </tr>                </table>                <br><br>                <table cellpadding="2" cellspacing="0" border="0" width="530">                <tr>                    <td colspan="3" width="530">&nbsp;</td>                </tr>                    <form name="formular" method="post">                    <input type="hidden" name="dummy" value="canthaveanemptyform">                <tr>                    <td width="80">&nbsp;</td>                    <td width="400" class="text"><!----- - - -  -   -    -     header ends here     -    -   -  - - - -----><jsp:include page="<%=jsp%>" flush="true"/><!----- - - -  -   -    -    footer starts here    -    -   -  - - - ----->                    </td>                    <td width="50">&nbsp;</td>                </tr>                   </form>                <tr>                    <td colspan="3" align="right">                        &nbsp;<br><br><br>                        <font class="text2"><%=msg%>&nbsp;&nbsp;&nbsp;</font>                    </td>                </tr>                <tr>                    <td colspan="3">&nbsp;</td>                </tr>                </table>            </td>        </tr>        </table>    </td></tr></table><br><br>&nbsp;</center></body></html><!----- - - -  -   -    -          e o f           -    -   -  - - - ----->

⌨️ 快捷键说明

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