|
The page could not be found on the LifeSource Server (Error 404)
<%
' If a user went directly to this page (without errors)
If Request.QueryString = "" Then
' Tell the user that this page is meant for handling missing pages
%>
This page is not meant to be viewed on its own. It is
here to capture and report missing web pages on this
server.
<%
Else
' Let the user know that the page is missing
%>
It appears that you have stumbled upon a page that is not
present on this web site. The page may have been
renamed or removed from our site. Please try another link or wait just a moment to be directed
to our Home Page.
<%
' If we were able to send a report to the webmaster
If SendReport("bnelson@itxm.org") Then
' Tell the user we sent a report
%>
A message has been sent to the webmaster about this missing page.
<%
End If
%>
We apologize for any inconvenience that this may have caused.
<%
End If
%>
|