<%...@page contentType="text/html; charset=GBK" isELIgnored="false"%>
<%...
if (application.getAttribute("count") == null) {
application.setAttribute("count", new Integer(0));
}
Integer count = (Integer) application.getAttribute("count");
application.setAttribute("count", new Integer(count.intValue() + 1));
%>
<html>
<head>
<title>页面被访问数统计</title>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
</head>
<body bgcolor="#ffffff">
<form action="RequestJsp.jsp">
<p></p>
<p></p>
<h1>
<input type="submit" name="sub" value="点击!"/>
</h1>
<!--输出访问次数 -->
<h1> 此页面已被访问了${applicationScope.count}次
</h1>
</form>
</body>
</html>
相关文章
- EL表达式无法使用的解决方法
- JSP中EL表达式语言不能使用的解决方法
- JAVAWEB开发之Session的追踪创建和销毁、JSP具体解释(指令,标签,内置对象,动作即转发和包括)、JavaBean及内省技术以及EL表达式获取内容的使用
- jsp页面中EL表达式被当成字符串处理不显示值的问题
- 1.jsp 从当前页面跳转到另一页面 (含有使用JavaScript、servlet 的跳转页面的方法)
- 出现 JSP页面中使用JSTL标签无法解析 错误的原因及解决方法
- JSP页面EL表达式无效的问题
- JavaWeb学习之什么JSP、JSP是如何工作的、JSP语言(各种指令和九大内置对象)、EL表达式简单使用(5)
- 在jsp页面中使用EL表达式无法解析spring mvc中Model或者ModelAndView传的值
- jsp学习---mvc模式介绍和el表达式,jstl标签库的使用入门