Recordcount necessary?

liunx

Guest
Hy guys, I have a website where I use Access database. At the top of each page I would like to show the visitors the number of registered users automatically. So I have some quesions please:

1 - Whats the best way for doing this?
2 - Would the connection openned each time harm my database
3 - What if a use FileSystemObject? How would look a nice code?
4 - Any better solution for this case?

For filesystemobject i have done this:
set obj_fso = createobject("Scripting.FileSystemObject")
obj_ts = obj_fso.OpenTextFile("../data/users.txt")
obj_ts.write?..............

For the following i dont wanna use the metod to write a string but to add +1 to the number of registered users and read the total sum later.

Thank you all,
Renato
 
Back
Top