“If you have a concern about Norwalk’s wastewater treatment
plant odors,
please call the City’s 24-hour hotline at 203/854-5517
or Customer Service at 203/854-3200.
It is helpful to call your complaint in immediately upon detection to
aid the City in determining the cause of the odors.
We thank you and appreciate your assistance.”
|
<%
pgeNme = Request.ServerVariables("PATH_INFO")
pgeNme = Replace(pgeNme,"/","_")
pgeNme = Replace(pgeNme,"\","_")
' Counts are logged to the cgi-bin, change path below if desired
LogTo = ("/counter/" + pgeNme)
CounterFile = Server.MapPath(LogTo + ".txt")
Set xFS = CreateObject("Scripting.FileSystemObject")
On Error Resume Next
Set xMC = xFS.OpenTextFile(CounterFile, 1, 0, 0)
usercnt = xMC.Readline
set xFS = Nothing
usercnt = FormatNumber(usercnt + 1,0)
Set xFS = CreateObject("Scripting.FileSystemObject")
set xRC = xFS.CreateTextFile (CounterFile, 1, 0)
xRC.WriteLine usercnt
Set xRC = Nothing
showHitCnt = usercnt
Response.Write "
Total hits on this page " & usercnt & ""
%>