|
News & Information
Overview
Throughout the year, the District provides publications to educate and inform its customers on District activities and other subjects such as water quality and water conservation. Some of these publications include periodic press releases, newsletters, annual water quality reports, and educational water bill inserts. Click on the links below to view the variety of topics the District's publications address.
Urban Water Management Plan
Press Releases
Water Quality Reports
Newsletters
Water Bill Inserts
CEQA Documents
Water Bill Inserts
<%
'GET WATER BILL INSERTS
set PRList = Connect.Execute("SELECT * FROM waterbill_inserts ORDER BY Title")
content = ""
iCount = 0
do until PRList.eof
myFile = PRList("File")
if right(myFile, 3) = "pdf" then myTarget = " target=""_blank"" " else myTarget = ""
if myFile > "" then content = content & ""
content = content & PRList("Title")
if myFile > "" then content = content & ""
content = content &" "
iCount = iCount + 1
PRList.MoveNext
loop
response.write Left(content, len(content)-4)
%>
|