控制网站到期时间

if (System.DateTime.Now > Convert.ToDateTime("2011-04-28"))
    {
        System.Web.HttpContext.Current.Response.Write("<script>window.location.href='../Error.htm';</script>");
        System.Web.HttpContext.Current.Response.Redirect("../Error.htm");
    }


你可能感兴趣的:(控制网站到期时间)