使用JSP页面执行el表达式的方法

时间:2021-12-04 13:19:33
使用JSP页面执行el表达式的方法使用JSP页面执行el表达式的方法<%@page contentType="text/html; charset=GBK" isELIgnored="false"%>
使用JSP页面执行el表达式的方法使用JSP页面执行el表达式的方法
<%
使用JSP页面执行el表达式的方法   
if (application.getAttribute("count"== null) {
使用JSP页面执行el表达式的方法     application.setAttribute(
"count"new Integer(0));
使用JSP页面执行el表达式的方法   }
使用JSP页面执行el表达式的方法   
Integer count = (Integer) application.getAttribute("count");
使用JSP页面执行el表达式的方法   application.setAttribute(
"count"new Integer(count.intValue() + 1));
使用JSP页面执行el表达式的方法
%>
使用JSP页面执行el表达式的方法
<html>
使用JSP页面执行el表达式的方法
<head>
使用JSP页面执行el表达式的方法
<title>页面被访问数统计</title>
使用JSP页面执行el表达式的方法
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
使用JSP页面执行el表达式的方法
</head>
使用JSP页面执行el表达式的方法
<body bgcolor="#ffffff">
使用JSP页面执行el表达式的方法
<form action="RequestJsp.jsp">
使用JSP页面执行el表达式的方法
<p></p>
使用JSP页面执行el表达式的方法
<p></p>
使用JSP页面执行el表达式的方法
<h1>
使用JSP页面执行el表达式的方法   
<input type="submit" name="sub" value="点击!"/>
使用JSP页面执行el表达式的方法
</h1>
使用JSP页面执行el表达式的方法
使用JSP页面执行el表达式的方法
<!--输出访问次数 -->
使用JSP页面执行el表达式的方法
<h1>   此页面已被访问了${applicationScope.count}次
使用JSP页面执行el表达式的方法
</h1>
使用JSP页面执行el表达式的方法
</form>
使用JSP页面执行el表达式的方法
</body>
使用JSP页面执行el表达式的方法
</html>