adminpopup.jsp

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

JSP
48
字号
<%@page language = "java" %><%@page import = "java.util.*"%><%@ taglib uri="JahiaLib" prefix="jahia" %><%@page import="org.jahia.bin.*"%><jsp:useBean id="title" class="java.lang.String" scope="request"/><%    String jspSource = (String)request.getAttribute("jspSource");    String suicide = (String)request.getAttribute("suicide");%><script language="javascript">function submitForm(call, action, subAction){    document.mainForm.action = "<%=JahiaAdministration.composeActionURL(request,response,"","")%>" + call + "&sub=" + action + "&subaction=" + subAction;    document.mainForm.method = "post";    document.mainForm.submit();}</script><html><head>    <title>Jahia Administration - <%=title%></title>    <link rel="stylesheet" href="<%=request.getContextPath()%><jahia:engineResourceBundle resourceName="stylesheet" />" type="text/css">    <script language="javascript" src="<%=request.getContextPath()%>/jsp/jahia/javascript/jahia.js"></script></head><body class="text" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"      onload="<% if (suicide != null) { %>javascript:closePopupWindow()<% } %>"><form name="mainForm" method="post" action="">    <table width="100%" height="63" border="0" cellspacing="0" cellpadding="0">        <tr>            <td><img src="<%=request.getContextPath()%><jahia:engineResourceBundle resourceName="headerLogoImg" />" width="126" height="63"></td>            <td width="100%" background="<%=request.getContextPath()%><jahia:engineResourceBundle resourceName="headerBgImg" />">&nbsp;</td>        </tr>    </table>    <!-- include page start -->    <jsp:include page="<%=jspSource%>" flush="true"/>    <!-- include page ends --></form></body></html>

⌨️ 快捷键说明

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