|
Diver’s Den Dive Shop is one of the
oldest and largest dive shops in the entire Northeast. We have been in
business for more than 40 YEARS and have established a proven track record of
excellent service.
We stock a wide
variety of diving and snorkeling equipment with fair pricing and on- site
equipment repair. Our year-round PADI training courses are taught by our
staff of PADI Certified Instructors. Our hard work and dedication to the
sport of SCUBA diving has earned us the
PADI 5 Star
Facility rating, which we proudly acknowledge.
We
extend our warm welcome to you to come visit our shop. Whether it's an item
for yourself or a gift for someone else (we offer gift certificates) we are
here to service you. Without you ---- we would not be in business.
|
SHOP HOURS |
|
Mon. Tue. Thur. Fri. : 9 - 6
Saturday: 9 - 4
Wed. & Sun.: CLOSED
|
<%
on error resume next
' Create a server object
set fso = createobject("scripting.filesystemobject")
' Target the text file to be opened
set act = fso.opentextfile(server.mappath("asp_count.txt"))
' Read the value of the text document
' If the text document does not exist then the on error resume next
' will drop down to the next line
counter = clng(act.readline)
' Add one to the counter
counter = counter + 1
' Close the object
act.close
' Create a new text file on the server
Set act = fso.CreateTextFile(server.mappath("asp_count.txt"), true)
' Write the current counter value to the text document
act.WriteLine(counter)
' Close the object
act.Close
' Write the counter to the browser as text
Response.Write counter
%>
Copyright © 2009, Divers Den Dive Shop
Site Maintained by Company-G Web Development

|