Well... I am using global.asa to display ONLINE USERS, USERS TODAY and PAGE VIEWS TODAY... till here everything's fine. PROBLEM: every time the server resets or there is no one online for a while... all the numbers go back to ZERO!! :-( Isn't there a way to keep it for NOT happening? This is the code I am using: <% Application.Lock Application("PToday") = Application("PToday") + 1 Application.Unlock nUsers = Application("ActiveUsers") - 0 nUToday = Application("UToday") - 0 nUToday = FormatNumber(nUToday,0) nPToday = Application("PToday") - 0 nPToday = FormatNumber(nPToday,0) bRebootToday = Application("NewToday") - 0 Response.write ( "<B>" & nUsers & "</B> online users | ") Response.write ( "<B>" & nUToday & "</B> visits today | ") Response.write ( "<B>" & nPToday & "</B> page views today") %>