Now create a folder called counters or you can call it something else if you want just remember and change the code above . Now create a text file called counter1.txt and enter whatever you wish to start the count at.
<%@ Language=VBScript %>
<%
Dim fso
Set fso = Server.CreateObject(“Scripting.FileSystemObject”)
//this is the path to your counter1.txt file
counter = [...]
This is a more accurate counter than our previous example , in this example the count only gets incremented once per session . This means your count will be more accurate if you want it to be that is.
Create a txt file and put your starting number in it . Then copy the code snippet [...]
Display a CSV file
CSV files are common formats to get information . I have seen commission sites , stock quotes and various links in these types of files . CSV are comma seperated value files , the typical format of one of these could be like this.
1000,age,234,billy
This is not much to look at but with [...]