原因是: Web默认开启缓存功能,记录之前的数据.而不执行Page_Load事件.
解决办法: 禁止页面开启缓存功能.
1: <head></head>中加入:<meta http-equiv="pragma" content="no-cache">

2: 后台代码 : response.cache.setnostore();