|
Over the Limit, Inc. is a clothing company designed for people who take their sports to the next level. When you see someone wearing O.T.L. apparel,
you know that they don't just like the sport; they are the sport. They are striving to be the best, holding nothing back, and giving it their all.
Most sports have limits; however, our sports go over those limits. At O.T.L., we respect and support all the people who innovate within actions sports.
<%
'MyFile = "C:\Inetpub\wwwroot\otl\content\company.txt"
MyFile = "E:\kunden\homepages\37\d103761467\sevenfour\otl\content\company.txt"
'Opens the guestbook file if it exists
Set MyFileObj=Server.CreateObject("Scripting.FileSystemObject")
IF MyFileObj.FileExists(MyFile) THEN
Set MyTextFile=MyFileObj.OpenTextFile(MyFile)
'Reads a line, and outputs it
WHILE NOT MyTextFile.AtEndOfStream
%>
<%=MyTextFile.ReadLine%>
<%
WEND
'Closes the textfile
MyTextFile.Close
END IF' Does file exist
%>
|