<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head> <title>My JSP 'b.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
--> </head> <body>
<%
Integer count=(Integer) session.getAttribute("count");
if(count==null){
count=1;
session.setAttribute("count",count);
}else{
count++;
session.setAttribute("count",count); } %>
<%="您是第" +count+"个访问者"%>
</body>
</html>

  

最新文章

  1. 我的Mac软件集
  2. 运用SET ANSI_PADDING OFF创建某个字段为自增列的表,以及插入数据
  3. linux exec用法总结
  4. spring aop配置及用例说明(1)
  5. 启动hbase时,hregionserver没有启动的原因
  6. FindControl的使用方法
  7. for update被锁定解锁
  8. Android学习笔记:ActionBar使用介绍
  9. DevOps之平台架构
  10. android中的五大布局(控件的容器,可以放button等控件)
  11. 随机数据生成与对拍【c++版,良心讲解】
  12. locust安装及其简单使用----基于python的性能测试工具
  13. H5取经之路——添加hover实现特定效果
  14. eclipse注解模板,实实在在的
  15. Angular2入门:TypeScript的接口
  16. Nginx Tcp四层反向代理
  17. python 基础 列表
  18. Kudu的卸载(cdh)
  19. putty安装和使用
  20. Raid5之后安装系统,挂载磁盘

热门文章

  1. hdu 5826 physics (物理数学,积分)
  2. hdu 5800 To My Girlfriend(背包变形)
  3. linux系统参数统计脚本
  4. iscroll中文文档
  5. Tornado 自定义session,与一致性哈希 ,基于redis 构建分布式 session框架
  6. VERIFY DATABASE 正在异常终止。 (Microsoft SQL Server,错误: 3169)
  7. RxJava 1.x 笔记:组合型操作符
  8. Android Studio单独生成apk
  9. Android studio 添加背景图片问题
  10. MySQL基础(《MySQL必知必会》简单总结)