traceuser.jsp

来自「B/S架构的软件项目实训;包括全部详细文档合源程序」· JSP 代码 · 共 15 行

JSP
15
字号
<%@page contentType= "text/html;charset=GBK"%>
<html>
<head>
<title>application bean</title>
</head>
<%request.setCharacterEncoding("GBK");%>
欢迎你,
<%=request.getParameter("userID")%><p>
<jsp:useBean id="appBean" class="ch7.bean.ListBean" scope="application"/>
最近在你之前有以下用户浏览过本网页:<p>
<jsp:getProperty name="appBean" property="lists" /><p>
<% appBean.addLists(request.getParameter("userID"));%>
</body>
</html>

⌨️ 快捷键说明

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