Hello Diffident,
Yeah, app_offline.htm won't work with .net 1.1. One way to do want you want
to do would be to alter the web.config file to deny all users access your
website and use the loginUrl to Sitedown.aspx (or something like that).
Obviously, you just have a message that the site is down on the Sitedown.aspx
page and don't display any login controls. Doesn't even require a
recompilation:
=-=-=-=-
<!-- AUTHENTICATION
This section sets the authentication policies of the application. Possible
modes are "Windows", "Forms", "Passport" and "None"
-->
<authentication mode="Forms">
<forms loginUrl="sitedown.aspx" protection="All" timeout="30">
</forms>
</authentication>
<authorization>
<deny users="*" />
</authorization>
=-=-=-=-=-=-=-
Another way that I've seen suggested is to put a redirect into the
global.asax file along the lines of:
void Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
{
Response.Redirect("sitedown.aspx")
}
=-=-=-=-=-=-
enjoy - brians
http://www.limbertech.com