Added: August/10/2006 at 1:00pm | IP Logged
|
|
|
Hey I am trying to find code that will turn this
<% Set objFSO = CreateObject("Scripting.FileSystemObject") Set objTextFile = objFSO.OpenTextFile("H:\Webs\panerabread\textDocuments\Offic e.txt")''''''Change path if neccesary, H:\Webs\panerabread\ is your home directory
Do While Not objTextFile.AtEndOfStream Response.Write objTextFile.ReadLine & "<BR>" & vbCrLf Loop
objTextFile.Close Set objTextFile = Nothing Set objFSO = Nothing %>
into asp code that makes the text blink if the modified date of the file is within a week. Any ideas?
|