摘要: 我们在利用SqlBlukcopy技术倒2010 或者2007格式的文件到SqlServer 数据库的时候,会发生如下错误: 原因如下: 1.在用SQL SERVER 2005访问.xlsx文件(office2007&2010文件格式)时,必须用provider 'Microsoft.ACE.OLED 阅读全文
posted @ 2017-06-30 13:06 Cein 阅读(1478) 评论(0) 推荐(0)
摘要: 1).获取缓存值 object o = HttpRuntime.Cache.Get("Key"); 2).设置相对过期缓存值有两种写法 第一种: HttpRuntime.Cache.Insert("Key", "Value", null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromSeconds(30)); 第二种: ... 阅读全文
posted @ 2017-06-30 11:09 Cein 阅读(262) 评论(0) 推荐(0)
摘要: 1 Dictionary list=new Dictionary; 2 3 foreach(var item in list) 4 { 5 Console.WriteLine(item.Key+item.Value); 6 } 7 //KeyValuePair 8 foreach(KeyValuePair kv in list) 9 { 10 Console.WriteLin... 阅读全文
posted @ 2017-06-30 11:08 Cein 阅读(258) 评论(0) 推荐(0)