11 2014 档案

摘要:public class Test{private static readonly string strConnection = "";public static void BulktoDb(DataTable dt){//1、SqlBulkCopytry{ using (SqlConnectio... 阅读全文
posted @ 2014-11-30 17:53 wzh0717 阅读(294) 评论(1) 推荐(0)
摘要:1、获取单个checkbox选中项(三种写法)$("input:checkbox:checked").val()或者$("input:[type='checkbox']:checked").val();或者$("input:[name='ck']:checked").val(); 2、 获取多个ch 阅读全文
posted @ 2014-11-24 12:44 wzh0717 阅读(147) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; using System.IO; usin... 阅读全文
posted @ 2014-11-18 10:31 wzh0717 阅读(317) 评论(0) 推荐(0)
摘要:http://pan.baidu.com/s/1i3qYDF3 SHA1http://pan.baidu.com/s/1ntBjsBv MD5http://pan.baidu.com/s/1sjHMGW1 Base64 阅读全文
posted @ 2014-11-13 22:37 wzh0717 阅读(116) 评论(0) 推荐(0)
摘要:·First-返回集合中的第一个元素;不延迟·FirstOrDefault-返回集合中的第一个元素(如果没有则返回默认值);不延迟·Last-返回集合中的最后一个元素;不延迟·LastOrDefault-返回集合中的最后一个元素(如果没有则返回默认值)·ElementAt-返回集合中指定索引的元素... 阅读全文
posted @ 2014-11-13 16:26 wzh0717 阅读(124) 评论(0) 推荐(0)
摘要:默认在Views文件外的静态页面可以访问,若要访问Views里的静态页面则需要修改View文件夹中的web.config: 阅读全文
posted @ 2014-11-13 10:30 wzh0717 阅读(1153) 评论(0) 推荐(0)