摘要:
private string ReplaceNoCase(string text, string oldValue, string newValue) { return System.Text.RegularExpressions.Regex.Replace(text, oldValue, newValue, System.Text.RegularExpressions.... 阅读全文
摘要:
string filePath = Server.MapPath("~/excel.xlsx"); if (File.Exists(filePath)) { FileStream fs = new FileStream(filePath, ... 阅读全文