<html>
<head>
<title>sesson</title>
</head><body>
<%
String tmp = null;
String heading = null;
int accessCount = -1; tmp = sesson.getAttribute("accessCount"); try{  
if (tmp == null){
accessCount = new Integer(1);
heading = "欢迎光临,这是你的第一次访问!";
}else{
accessCount = Integer.parseInt(tmp) + 1;
heading = "欢迎光临,这是您的第"+accessCount+"次访问!";
} sesson.setAttribute("accessCount",accessCount);
out.println(heading);
}catch (Exception ex) {
out.println(ex.getMessage());
}
%></body></html>