product.jsp

来自「郭克华j2ee高级框架实战教学视频源代码 这个是比较值得一看的 由郭克华博士」· JSP 代码 · 共 40 行

JSP
40
字号
<%@ page contentType="text/html; charset=UTF-8" %>
<html>
   <head>
      <title>TilesTaglibs Sample</title>
   </head>
   <body >
      <%-- One table lays out all of the content for this page --%>
      <table width="100%" height="100%" >
         <tr>
            <%-- Sidebar--%>
            <td width="150" valign="top" align="left" bgcolor="#CCFFCC"> 
            	<jsp:include page="sidebar.jsp"></jsp:include>
            </td>
            <%-- Main content--%>
            <td valign="top" height="100%" width="*">
               <table width="100%" height="100%">
                  <tr>
                     <%-- Header--%>
                     <td valign="top" height="15%">                                   
                       <jsp:include page="header.jsp"></jsp:include>   
                     </td>
                  <tr>
                 <tr>
                     <%-- Content--%>
                     <td valign="top" height="*">
                     	<jsp:include page="productsContent.jsp"></jsp:include>   
                     </td>
                  </tr>
                  <tr>
                     <%-- Footer--%>
                     <td valign="bottom" height="15%">
                     	<jsp:include page="footer.jsp"></jsp:include> 
                     </td>
                  </tr>
               </table>
            </td>
         </tr>
      </table>
   </body>
</html>

⌨️ 快捷键说明

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