摘要: /// <summary> /// 获取某一列的所有值 /// </summary> /// <typeparam name="T">列数据类型</typeparam> /// <param name="dtSource">数据表</param> /// <param name="filedName 阅读全文
posted @ 2017-04-22 21:18 森林王子 阅读(22564) 评论(1) 推荐(1)
摘要: Match match = Regex.Match("result=23&asdf=asdf", @"result=(\d+)&"); if (match.Success) { Console.WriteLine(match.Value); //result=23& Console.... 阅读全文
posted @ 2016-11-29 09:54 森林王子 阅读(200) 评论(0) 推荐(0)
摘要: using System; namespace ConsoleApp1 { public class Program { private delegate int Add(int a, int b); public static void Main(string[] args) { Add add1 = n... 阅读全文
posted @ 2016-11-29 08:43 森林王子 阅读(371) 评论(0) 推荐(0)
摘要: Severity Code Description Project File Line Suppression StateError This project references NuGet package(s) that are missing on this computer. Use NuG 阅读全文
posted @ 2016-11-20 11:42 森林王子 阅读(12853) 评论(0) 推荐(3)
摘要: 1. 在windows server 2008下装SQL 2008出现 This SQL Server Setup media is not supported on a X64 system 使用虚拟光驱(DAEMON Tools Lite)安装即可。 2.安装步骤: 1.需要创建一个window 阅读全文
posted @ 2016-11-12 22:10 森林王子 阅读(1230) 评论(0) 推荐(0)
摘要: DateTime. ToString() 2016-11-03 13:27:54 ToBinary() -8587234560113423030 ToFileTime() 131226244741352778 ToFileTimeUtc() 131226244741352778 ToLocalTime() 2016-11-03 ... 阅读全文
posted @ 2016-11-03 13:29 森林王子 阅读(163) 评论(0) 推荐(0)
摘要: 网友办法:http://www.hongxuejing.com/hulianwang/ueditor_not_show_background-33.html 官方办法:http://fex-team.github.io/ueditor/#start-uparse 我的解决方法: 在文章结尾加上: 阅读全文
posted @ 2016-10-28 11:35 森林王子 阅读(5465) 评论(0) 推荐(0)
摘要: 效果图: 阅读全文
posted @ 2016-10-26 11:01 森林王子 阅读(1694) 评论(0) 推荐(0)
摘要: jQuery API 3.1.0 速查表-打印图,(API来自:http://jquery.cuishifeng.cn/index.html) 阅读全文
posted @ 2016-10-24 09:50 森林王子 阅读(586) 评论(0) 推荐(0)
摘要: $("#elem").on({ mouseover:function(){}, mouseout:function(){}, });$(ele).closest("div"); 找到第一个父级div 阅读全文
posted @ 2016-10-22 10:14 森林王子 阅读(186) 评论(0) 推荐(0)