在页面里,我直接写关键代码
<%
if(application.getAttribute("count")==null){
application.setAttribute("count",1);
}else{
int count = application.getAttribute("count"); //这里取出来的是个对象,但是前面我给的是int
count++;
application.setAttribute("count",count);
}
%>
在页面里,我直接写关键代码
<%
if(application.getAttribute("count")==null){
application.setAttribute("count",1);
}else{
int count = application.getAttribute("count"); //这里取出来的是个对象,但是前面我给的是int
count++;
application.setAttribute("count",count);
}
%>