摘要:
private void Page_Load(object sender, System.EventArgs e){这里可以判断,什么时候要做跳转Response.Status = “301 Moved Permanently”;Response.AddHeader(”Location”,”http://www.ahwebs.com/articles/301/“);} 阅读全文
摘要:
private void Page_Load(object sender, System.EventArgs e){这里可以判断,什么时候要做跳转Response.Status = “301 Moved Permanently”;Response.AddHeader(”Location”,”http://www.ahwebs.com/articles/301/“);} 阅读全文
摘要:
主要做的是,文章中的关键字标签加上链接,网上也有很多解决办法,自己整理以便后续在用。效果如图:下面是代码: 1 /// 2 /// 内联 3 /// 4 /// 5 /// 6 public string ReplaceTextTag(string content) 7 { 8 A a = new A(); 9 string result = "";10 if (!string.IsNullOrEmpty(conte... 阅读全文
|