British guitarist Rob Wise has joined Troubled Spirit to replace
the illustrious Russell Jones who is currently pursuing other musical endeavors.
The DISA-Peering Act - including members of Troubled Spirit help raise over $17,500 for the USO Thursday October 18, 2007 - Captain Tim Coderre and Major Ken Sandler joined forces with Steve, Darryl and Jim from Troubled Spirit to compete in the
GIT (Government IT) Rockin' Battle of the Bands at the State Theater in Falls Church.
A very polished and exciting band known as the Groove narrowly pulled out a victory
in this event over the DISA-Peering Act.
In all five excellent bands competed to raise money for the USO.
Introducing "Bottled in America"
Featuring former Troubled Spirit members and some new friends. Click here and see.
Don't delay! Order music today!
<%
'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
'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
'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
%>