counter.jsp

来自「这是一个JSP+SQL Server论坛管理系统 基本实现了论坛的所有功能 数据」· JSP 代码 · 共 20 行

JSP
20
字号
<%
try{
	if(session.getAttribute("flag")==null){
		if(application.getAttribute("count")==null){
			String count;
			count="1";
			application.setAttribute("count",count);
		}else{
			int count;
			count=Integer.parseInt(application.getAttribute("count").toString())+1;
			String str;
			str=String.valueOf(count);
			application.setAttribute("count",str);
		}
		String val;
		val="true";
		session.setAttribute("flag",val);
	}
}catch(Exception e){}
%>

⌨️ 快捷键说明

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