2012年8月3日
摘要: public static string GetSubString(string str) { if (str.Length > 15) { string str1 = str.Substring(0, 10) + "..."; return (str1); } else return (str); } 调用: <dd style="height: 25px"> ... 阅读全文
posted @ 2012-08-03 17:29 张彦山 阅读(216) 评论(0) 推荐(0) 编辑