记录访问次数

来源:互联网 发布:卡盟源码安装教程 编辑:程序博客网 时间:2024/06/02 02:24

refresh.jsp

<%    Integer count=(Integer)application.getAttribute("count");    <--!将count强转为Integer类型 -->    if(count==null){<--!判断count是否为空 -->        application.setAttribute("count",1);    }else{        application.setAttribute("count",count+1);}%><--!如果count不为空 count+1 -->    <p>第<%=application.getAttribute("count")%>次访问</p>
原创粉丝点击