NT Hosting  Linux Hosting Reseller Dedicated
 Sign Up Now Email Us Home

I want to have Text Hit Counter on my home page.

 

Description:

I want to have Text Hit Counter on my home page.
 

Solution:

Add the following code into your Home Page .asp file at the position of your choice.

<%
set fso = createobject("scripting.filesystemobject")
set act = fso.opentextfile(server.mappath("counter.txt"))

counter = clng(act.readline)
counter = counter + 1
act.close

Set act = fso.CreateTextFile(server.mappath("counter.txt"), true)

act.writeline(counter)
act.close

counter_length = len(counter)

Response.Write counter
%>


(SAVE AND CLOSE YOUR FILE)

Create a file named counter.txt in your home directory (Example: "c:/websites/yourdomaincom") and store the initial value that you want in it (Example: 101)

Back


hostonjava 4/24/2024 11:42:22 AM