"
' If Session Variable TotalCount is empty
' then this is first time and user need to be counted
' But if Session Variable already has the value
' Then don't count this user again.
Dim TotalCount
If IsEmpty(Session("TotalCount")) Then
TotalCount = Right("00000" & MakeCount(), 6)
Else
TotalCount = Right("00000" & Session("TotalCount"), 6)
End If
For i=1 To 6
Response.Write "| " & Mid(TotalCount, i, 1) & " | "
Next
Response.Write "