mainitem.jsp

来自「J2EE电子商务系统开发从入门到精通---基于Struts和Hibernate技」· JSP 代码 · 共 27 行

JSP
27
字号
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ include file="..\taglibs.jsp" %>
<%@page import = "java.util.*"%>
<%@page import = "model.library.hibernate.*"%>
<%@page import = "model.hr.hibernate.*"%>
<%
   request.setCharacterEncoding("gb2312");
   List historyList = (List)session.getAttribute("historylist");
   Employee employee = (Employee)session.getAttribute("employee");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>LIBRARY ONLINE</title>
</head>

<body>
<p>&nbsp;</p>
<ol>
  <li><a href="/EMIS/historylist.do?employeeid=<%=employee.getId()%>" target="mainFrame">历史记录</a></li>
  <li><a href="/EMIS/documentlist.do?page=first" target="mainFrame">文档列表</a></li>
</ol>
<p>&nbsp;</p>
</body>
</html>

⌨️ 快捷键说明

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