📄 main.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<% if(request.getSession().getAttribute("loginfoU")==null){
%>
<script type="text/javascript">
window.document.location.href="/BookManager/login.do?method=logout";
</script>
<%} %>
<div align="center">
<jsp:include page="/top.jsp"></jsp:include>
<head>
<base href="<%=basePath%>">
<title>读者登录登录</title>
<link href="/css/style.css" rel="stylesheet" >
</head>
<jsp:include page="/info.jsp"/>
<!--MIDDLE-->
<div id="middle">
<div class="left">
<jsp:include page="left.jsp"/>
</div>
<div class="zhedie"></div>
<div class="right">
<iframe class="right" src="" name="main" scrolling="auto" frameborder="0" ></iframe>
</div>
</div>
<!--end MIDDLE-->
<!--BOTTOM-->
<jsp:include page="/bottom.jsp"></jsp:include>
<!--end BOTTOM-->
<logic:present name="msg">
<%=(String)request.getAttribute("msg")%>
</logic:present>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -