Click below to take a break and visit one of Dave's webpages

David Kwong: The Man, The Myth My personal web page which includes a copy of my resume, description of past work experiences and past school projects.  You will also find games and pictures to enjoy
Altiman2k's Website Completely dedicated to my 2000 Nissan Altima GLE.  You will find pictures and descriptions of modifications done to my car.
WRX2k4Blue's Website Dedicated to my 2004 Subaru Impreza WRX.  You will find pictures and descriptions of modifications done to my car.
The Waylanders Dedicated to my best buddies from Wayland.  You will find hilarious pictures and bios for the five members of  The Waylanders
My FTP Site Downloadable software, pics, and media.  You will need a username and password which can be obtained by emailing me at dkwong@comcast.net
Sign the Guestbook Answer a few questions about yourself and this site.  Leave your mark on this webpage!

View the weather for your town or city below!

You are visitor number

<% 'Dimension variables Dim fsoObject 'File System Object Dim tsObject 'Text Stream Object Dim filObject 'File Object Dim lngVisitorNumber 'Holds the visitor number Dim intWriteDigitLoopCount 'Loop counter to display the graphical hit count 'Create a File System Object variable Set fsoObject = Server.CreateObject("Scripting.FileSystemObject") 'Initialise a File Object with the path and name of text file to open Set filObject = fsoObject.GetFile(Server.MapPath("hit_count.txt")) 'Open the visitor counter text file Set tsObject = filObject.OpenAsTextStream 'Read in the visitor number from the visitor counter file lngVisitorNumber = CLng(tsObject.ReadAll) 'Increment the visitor counter number by 1 lngVisitorNumber = lngVisitorNumber + 1 'Create a new visitor counter text file over writing the previous one Set tsObject = fsoObject.CreateTextFile(Server.MapPath("hit_count.txt")) 'Write the new visitor number to the text file tsObject.Write CStr(lngVisitorNumber) 'Reset server objects Set fsoObject = Nothing Set tsObject = Nothing Set filObject = Nothing 'HTML output to display the visitor number Response.Write("Visitor Number
") 'Display the hit count as text 'Response.Write(lngVisitorNumber) 'Loop to display graphical digits For intWriteDigitLoopCount = 1 to Len(lngVisitorNumber) 'Display the graphical hit count Response.Write("") Next %>