footer.jsp

来自「一个很好的开源项目管理系统源代码」· JSP 代码 · 共 32 行

JSP
32
字号
<%@ include file="../includes/taglibs.jsp"%><%@ page import="java.util.Enumeration" %><div id="formFooter">  <%-- DO NOT REMOVE THIS COPYRIGHT NOTICE AND SHOULD BE VISIBLE AT ALL TIMES --%>  Copyright &copy; 2005,<a href="http://www.logicden.com">&nbsp;Logicden</a>  &nbsp;&nbsp;&nbsp; Workeffort-1.2.1</div><%-- for debugging --%><%--  out.print("<br /><br />=================REQUEST SCOPE ==============");Enumeration atts = pageContext.getAttributeNamesInScope(PageContext.REQUEST_SCOPE);while (atts.hasMoreElements()) {  String attrName = (String) atts.nextElement();  out.print("<br /><b>" + attrName + "</b> = " + request.getAttribute(attrName) +  "\n");}  out.print("<br /><br />=================SESSION SCOPE ==============");atts = pageContext.getAttributeNamesInScope(PageContext.SESSION_SCOPE);    while (atts.hasMoreElements()) { String attrName = (String) atts.nextElement();  out.print("<br /><b>" + attrName + "</b> = " + session.getAttribute(attrName) +  "\n");}out.print("<br />=================APPLICATION SCOPE ==============");atts = pageContext.getAttributeNamesInScope(PageContext.APPLICATION_SCOPE);while (atts.hasMoreElements()) {  out.print("<br />" + atts.nextElement() + "\n");  //String attrName = (String) atts.nextElement();  //out.print("<br /><b>" + attrName + "</b> = " + application.getAttribute(attrName) +  "\n"); }--%>

⌨️ 快捷键说明

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