http://cwlcwr.bf114.cn/index.aspx-------------
private System.ComponentModel.IContainer components = null; public Global()
{
InitializeComponent();
}

protected void Application_Start(Object sender, EventArgs e)
{
uint count=0; 
StreamReader srd; 
//取得文件的实际路径 
string file_path=Server.MapPath ("counter.txt"); 
//打开文件进行读取 
srd=File.OpenText (file_path); 
while(srd.Peek ()!=-1) 

string str=srd.ReadLine (); 
count=UInt32.Parse (str); 

object obj=count; 
Application["counter"]=obj; 
srd.Close ();  }
 
protected void Session_Start(Object sender, EventArgs e)
{
Application.Lock (); 
//数值累加,注意这里使用了装箱(boxing) 
uint jishu=0; 
jishu=(uint)Application["counter"]; 
jishu=jishu+1; 
object obj=jishu; 
Application["counter"]=obj; 
//将数据记录写入文件 
string file_path=Server.MapPath ("counter.txt"); 
StreamWriter fs=new StreamWriter(file_path,false); 
fs.WriteLine (jishu); 
fs.Close (); 
Application.UnLock (); 
-------------
本地测试 记数正常
该空间最近才开 是不是读取权限上存在问题?