导航

asp.net 301 重定向

Posted on 2012-04-26 17:33  yjss  阅读(141)  评论(0编辑  收藏  举报
        protected void Page_Load(object sender, EventArgs e)
        {
            Response.Clear();
            Response.Status = "301 Moved Permanently";
            Response.AddHeader("Location", "http://www.baidu.com/");
            Response.End();
        }