system.jsp

来自「采用jsp编写的企业计量设备管理系统」· JSP 代码 · 共 51 行

JSP
51
字号
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        
<%-- Include common set of tag library declarations for each layout --%>
<%@ include file="/common/taglibs.jsp"%>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <%-- Include common set of meta tags for each layout --%>
        <%@ include file="/common/meta.jsp" %>
        <title><fmt:message key="webapp.prefix"/><decorator:title/></title>
        <script type="text/javascript" src="<c:url value='/scripts/helptip.js'/>"></script>
        <link rel="stylesheet" type="text/css" media="all" href="<c:url value='/styles/default.css'/>" /> 
        <link rel="stylesheet" type="text/css" media="all" href="<c:url value='/styles/helptip.css'/>" />
        <link rel="stylesheet" type="text/css" media="print" href="<c:url value='/styles/print.css'/>" />     
        <script type="text/javascript" src="<c:url value='/scripts/global.js'/>"></script>
        <script type="text/javascript" src="<c:url value='/scripts/calendar.js'/>"></script>
        <c:if test="${sessionScope.currentUserForm != null}">
        <link rel="stylesheet" type="text/css" media="all" href="<c:url value='/styles/menuExpandable.css'/>" />
        <script type="text/javascript" src="<c:url value='/scripts/menuExpandable.js'/>"></script>
         </c:if>
        <decorator:head/>
    </head>
    <body<decorator:getProperty property="body.id" writeEntireProperty="true"/>> 
    <div class="standardsNote">
        <fmt:message key="errors.browser.warning"/>
    </div>
    <div>
       <c:import url="/common/header.jsp"/>   
    </div>
    <div>  
    <table  width="100%" height="100%">
    <tr>
         <td valign="top">
           <c:import url="/common/systemleft.jsp"/>   
         </td>
         <td width=20>           
         </td>
           <td width="100%"  valign="top">
            <!--<h1><decorator:getProperty property="page.heading"/></h1>-->
            <%@ include file="/common/messages.jsp" %>
            <decorator:body/>
           </td> 
     </tr>     
     </table>  
     </div> 
     <div >
        <c:import url="/common/footer.jsp"/>
    </div>
    </body>
</html>

⌨️ 快捷键说明

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