摘要: private string ReplaceNoCase(string text, string oldValue, string newValue) { return System.Text.RegularExpressions.Regex.Replace(text, oldValue, newValue, System.Text.RegularExpressions.... 阅读全文
posted @ 2015-04-27 10:56 随学·笔记 阅读(1163) 评论(0) 推荐(0) 编辑
摘要: string filePath = Server.MapPath("~/excel.xlsx"); if (File.Exists(filePath)) { FileStream fs = new FileStream(filePath, ... 阅读全文
posted @ 2015-04-27 10:48 随学·笔记 阅读(206) 评论(0) 推荐(0) 编辑