上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页
  2015年6月30日
摘要: ,“618”将与“双11”一样,成为电商行业一年一度的节日。“双11”由淘宝搭台,“618”则由京东商城发起,形成电商领域半年一庆的局面。“从传统零售角度看,6月中旬与11月中旬都正值零售业的相对淡季。电商在此时‘造节’事半功倍。” 阅读全文
posted @ 2015-06-30 09:03 软件开发学习分享 阅读(252) 评论(0) 推荐(0) 编辑
  2015年6月29日
摘要: 找到多个与名为“Home”的控制器匹配的类型 阅读全文
posted @ 2015-06-29 11:17 软件开发学习分享 阅读(155) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; using System.Data; using System.IO; using System.Web; using Microsoft.Office.Intero... 阅读全文
posted @ 2015-06-29 09:43 软件开发学习分享 阅读(394) 评论(0) 推荐(0) 编辑
  2015年6月26日
摘要: private SortedDictionary Dic_values = new SortedDictionary(); 阅读全文
posted @ 2015-06-26 14:18 软件开发学习分享 阅读(235) 评论(0) 推荐(0) 编辑
  2015年6月25日
摘要: SortedDictionary 类 表示根据键进行排序的键/值对的集合。SortedDictionary 中的每个键必须是唯一的。 键不能为 null,但是如果值类型 TValue 为引用类型,该值则可以为空。SortedDictionary 可对未排序的数据执行更快的插入和移除操作. 阅读全文
posted @ 2015-06-25 09:42 软件开发学习分享 阅读(193) 评论(0) 推荐(0) 编辑
  2015年6月24日
摘要: finally 块用于清除 try 块中分配的任何资源,以及运行任何即使在发生异常时也必须执行的代码 阅读全文
posted @ 2015-06-24 15:27 软件开发学习分享 阅读(369) 评论(0) 推荐(0) 编辑
摘要: HttpWebRequest使用证书请求//是否使用证书 if (isUseCert) { string path = HttpContext.Current.Request.PhysicalApplicationPath; X509Certificate2 cert = new X509Certi... 阅读全文
posted @ 2015-06-24 15:19 软件开发学习分享 阅读(1801) 评论(1) 推荐(1) 编辑
摘要: public ActionResult Index() { string url = "Https://www.baodu.com"; bool isOK = false; if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase)... 阅读全文
posted @ 2015-06-24 15:14 软件开发学习分享 阅读(624) 评论(0) 推荐(1) 编辑
摘要: if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase)) 阅读全文
posted @ 2015-06-24 15:03 软件开发学习分享 阅读(211) 评论(0) 推荐(0) 编辑
摘要: System.GC.Collect();//垃圾回收,回收没有正常关闭的http连接 阅读全文
posted @ 2015-06-24 15:01 软件开发学习分享 阅读(1379) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页