home.jsp 914 B

12345678910111213141516171819202122
  1. <%@ page language="java" pageEncoding="UTF-8"%>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Language" content="zh-cn">
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <style>
  7. body
  8. {
  9. SCROLLBAR-ARROW-COLOR: #ffffff; SCROLLBAR-BASE-COLOR: #dee3f7;
  10. }
  11. </style>
  12. </head>
  13. <frameset rows="103,*,43" frameborder=0 border="0" framespacing="0">
  14. <frame src="${pageContext.request.contextPath}/login/top.jsp" name="topFrame" scrolling="NO" noresize>
  15. <frameset cols="159,*" frameborder="0" border="0" framespacing="0">
  16. <frame src="${pageContext.request.contextPath}/login/left.jsp" name="leftFrame" noresize scrolling="YES">
  17. <frame src="${pageContext.request.contextPath}/login/welcome.jsp" name="mainFrame">
  18. </frameset>
  19. <frame src="${pageContext.request.contextPath}/login/bottom.jsp" name="bottomFrame" scrolling="NO" noresize>
  20. </frameset>
  21. </html>