/// <summary> /// 根据model获取内容 /// </summary> /// <param name="Ids"></param> /// <returns></returns> private string GetModelById(string name, C_ContentEntity model) { string strs = ""; if (model != null) { PropertyInfo[] propertys = model.GetType().GetProperties(); if (propertys != null && propertys.Length > 0) { foreach (PropertyInfo property in propertys) { if (property.Name == name || property.Name.Replace("F_", "") == name) { object obj = property.GetValue(model, null); if (obj != null) { strs = obj.ToString(); if (IsHtmlEnCode(strs)) { strs = System.Web.HttpUtility.HtmlDecode(strs); } } } } } } return(strs); }
/// <summary> /// 根据id获取内容 /// </summary> /// <param name="Ids"></param> /// <returns></returns> private string GetModelById(string name, string Ids) { string strs = ""; InitHtmlSavePath(Ids); if (CONTENTENTITY != null) { PropertyInfo[] propertys = CONTENTENTITY.GetType().GetProperties(); if (propertys != null && propertys.Length > 0) { foreach (PropertyInfo property in propertys) { strs = ProContent(name, strs, property); } } } return(strs); }