控制网站到期时间

来源:互联网 发布:二级域名 端口 编辑:程序博客网 时间:2024/04/28 01:33
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");    }