筆記筆記
/// /// 去除Html標籤 /// /// 傳入一整個Ckeidtor文字。 public static string ReplaceHtmlTag(string Html) { Html = Regex.Replace(Html, "<[^>]*>", ""); return Html; }