<%
set file1=Server.CreateObject("Scripting.FileSystemObject")
set text1=file1.opentextfile(".\status.txt")
webstatus=text1.readline
if (webstatus="offline") then
response.redirect("error.html")
end if
text1.close
file1=nothing
%>
<%
set file1=Server.CreateObject("Scripting.FileSystemObject")
set text1=file1.opentextfile(".\status.txt")
webstatus=text1.readline
if (webstatus="offline") then
response.redirect("error.html")
end if
text1.close
Set file1 = nothing
%>