this is the page counter script im using on the page that stores the number
of people that visit the site . at the moment it only runs thru the
lifecycle of an application . im presuming i need to write some code into
the global asa to record the hit counter to a text file does anyone have an
example please
<%Dim strUnique
strUnique = "Hits" & Request.ServerVariables("SCRIPT_NAME")
<%
Application.Lock
Application(strUnique) = Application(strUnique) + 1
Application.Unlock
%>
This is the global asa file
<SCRIPT LANGUAGE="VBScript" RUNAT="Server">
Sub session_OnStart
End Sub
Sub Session_OnEnd
End Sub
</SCRIPT>
>