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

📄 layout.jsp

📁 java电子相册一般网页里面实现图片切换的这个电子相册的代码
💻 JSP
字号:
<%@ page contentType="text/html;charset=GBK" language="java" %>

<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>

<%
    String contextPath = request.getContextPath();
%>

<html:html locale="true">
  
   <head>
      <title>欢迎来到电子相册系统</title>
      <meta http-equiv="content-type" content="text/html;chaset=GBK">
      <link href="<%=contextPath%>/css/style.css" rel="stylesheet" type="text/css">
   </head>
   <body class="othercolor">
        <%-- One table lays out all of the content --%>
      <table width="100%" height="100%">
         <%-- Sidebar section --%>
         <tr>
            <td width="150" valign="top" align="left">
               <tiles:insert attribute="sidebar"/>
            </td>
            <%-- Main content section --%>
            <td valign="top" height="100%" width="*">
               <table width="100%" height="100%">
                  <tr>
                     <%-- Header section --%>
                     <td height="60" class="othercolor2">
                        <tiles:insert attribute="header"/>
                     </td>
                  <tr>
                  <tr>
                     <%-- Content section --%>
                     <td valign="top" height="*">
                        <center><table><h2><html:errors/></h2></table></center><hr>
                        <tiles:insert attribute="content"/>
                     </td>
                  </tr>
                  <tr>
                     <%-- Footer section --%>
                     <td valign="bottom" height="40">
                        <tiles:insert attribute="footer"/>
                     </td>
                  </tr>
               </table>
            </td>
         </tr>
      </table>
   </body>
</html:html>

⌨️ 快捷键说明

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