导航

2012年4月26日

摘要: public partial class Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Response.Clear(); var webClient = new System.Net.WebClient() { Encoding = System.Text.Encoding.UTF8 }; Response.Write(webClient.DownloadStr... 阅读全文

posted @ 2012-04-26 17:41 yjss 阅读(316) 评论(0) 推荐(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(); } 阅读全文

posted @ 2012-04-26 17:33 yjss 阅读(141) 评论(0) 推荐(0) 编辑