看你首页是哪个页面了你可以这样处理后台数据库有个字段专门记录是否维护,如果维护则设置为true,否则为false,在你的首页,比如index.asp中,首先检查这个字段是否为true,
<!--#include file="Inc/SysProduct.asp" -->
<!--#include file="inc/Skin_CSS.asp"-->
<%set rs_news=server.createobject("adodb.recordset")
sqltext4="select top 1 * from Bs_Sysdata"
rs_news.open sqltext4,conn,1,1
moshi=rs_news("moshi")
rs_news=nothing
rs_news.close
if moshi=false then
Response.Redirect "Html/index.Html"
else
Response.Redirect "index_1.asp"
end if
%>