上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 22 下一页
摘要: public class Person { public string 姓名{get;set;} } public class Profile:Person { public string 档案号{get;set;} } var pros = valueItem.GetType().GetPrope 阅读全文
posted @ 2018-01-29 10:01 Ace001 阅读(502) 评论(0) 推荐(0)
摘要: with #pager as (select * ,ROW_NUMBER() OVER(Order By ID) as rowid from table)select * from #pager where rowid between (130 * (50-1)+1) and 130 * 50 -- 阅读全文
posted @ 2018-01-23 09:09 Ace001 阅读(159) 评论(0) 推荐(0)
摘要: 1.img标签 //<img开头,中间不包含<或>,空格后src以'或"开始..... Regex reg = new Regex("<img[^<>]*\\ssrc=(['\"]+[^<>'\"]+['\"]+)[^<>]*>", RegexOptions.IgnoreCase); MatchCo 阅读全文
posted @ 2018-01-10 09:09 Ace001 阅读(2659) 评论(1) 推荐(1)
摘要: http://blog.csdn.net/sinat_29412671/article/details/53690658 阅读全文
posted @ 2018-01-09 15:10 Ace001 阅读(237) 评论(1) 推荐(0)
摘要: 1.在ie中将当前网址加入信任网站 2.设置->internet选项->安全->受信任站点->自定义级别:将所有有关ActiveX的选项设置为启用 3.重启ie再次访问即可. 4.如果仍未解决,则将安全->Internet和本地Internet中所有关于ActiveX的选项设置为启用 0678015 阅读全文
posted @ 2017-12-22 15:03 Ace001 阅读(708) 评论(0) 推荐(0)
摘要: 转自:http://blog.csdn.net/educast/article/details/52775559 function JSONToExcelConvertor(JSONData, FileName, ShowLabel) { //先转化json var arrData = typeof 阅读全文
posted @ 2017-11-13 20:06 Ace001 阅读(4642) 评论(1) 推荐(0)
摘要: 1.nuget安装Microsoft.AspNet.WebApi.Extensions.Compression.Server 2.global.asax.cs里引用System.Net.Http.Extensions.Compression.Client 3.global.asax.cs的Appli 阅读全文
posted @ 2017-11-10 10:41 Ace001 阅读(1609) 评论(0) 推荐(1)
摘要: DF1E31DE-768E-43D7-B1DB-DE10BD031E13 From:http://www.cnblogs.com/xuejianxiyang/p/7802365.html 阅读全文
posted @ 2017-11-08 09:15 Ace001 阅读(4915) 评论(0) 推荐(1)
摘要: 注意物理路径处不能直接选择映射成的本地盘符!!! 阅读全文
posted @ 2017-10-28 15:55 Ace001 阅读(837) 评论(0) 推荐(0)
摘要: public static void Main(string[] args) { string abc="123"; //调用 string result = GetVarName(p => abc); Console.WriteLine(result); Console.ReadLine(); } 阅读全文
posted @ 2017-10-23 17:29 Ace001 阅读(613) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 22 下一页