|
ATL Trade Shows
We would love to have the opportunity to talk in person.
Please visit us at the following trade
shows
ATL Brand Protection Conference
Hilton Garden Inn, Park Place
11600 W. Park Place, Milwaukee
September 10, 2008
Registration opens July 25th.
Register Here
6th Annual Cold Chain Distribution for
Pharmaceuticals Co-Exhibiting with IDGlobal
Philadelphia Convention Center
Philadelphia, PA
September 22-25, 2008
NADDI National Conference
Nashville, TN
November 11-14, 2008
INTERPHEX 2009
Jacob K. Javits Convention Center
New York, NY
March 17-19, 2008
Please check again for upcoming trade shows.

<%
'here we set up a connection to the txt file using a physical path
Set oFSO = Server.CreateObject("Scripting.FileSystemObject")
Set oFile = oFSO.OpenTextFile("D:\webserver\atl\news\count.txt")
'now we read the number in the file
oldNum = CLng(oFile.ReadLine)
'and we close
oFile.Close
'we add one to the number
oldNum = oldNum + 1
'we open the file to overwrite the new number to it
Set oFile = oFSO.OpenTextFile("D:\webserver\atl\news\count.txt",2,true)
'and we overwrite it here
oFile.WriteLine(oldNum)
'and we close the file again
oFile.Close
'now we use the number for our display
strCount = oldNum
'here we are looking at the length of the number (how long it is)
'because this will effect our display table. if it is one digit long like 9
If LEN(strCount) = 1 Then
'we set ali (align) to center
ali = "center"
'if its 2 or more digits long like 35 or 4255 we will align left
'we use this later
Else
ali = "left"
End If
%>
|