摘要: 1.引用Newtonsoft.Json.dll 2.用API /// <summary> /// 判断是不是节假日,节假日返回true /// </summary> /// <param name="date">日期格式:yyyyMMdd</param> /// <returns></returns 阅读全文
posted @ 2017-05-10 11:48 AlexLeeLi 阅读(826) 评论(0) 推荐(0) 编辑
摘要: 今天碰到一个奇怪的问题,有一个页面,想指定用IE浏览器打开,在VS开发环境没有问题,但部署到服务器上,即使是用IE打开页面,还是提示“仅支持IE”,真是晕啊!! 判断是否IE浏览器用的是window.navigator.userAgent,跟踪这个信息,发现在开发环境,识别为IE10,但访问服务器则 阅读全文
posted @ 2017-04-11 15:52 AlexLeeLi 阅读(301) 评论(0) 推荐(0) 编辑
摘要: <script type="text/JavaScript" src="../../../JS/jQuery-1.4.1.min.js"></script><script type="text/javascript"> $(function () { //获取页面加载时RadioButtonList 阅读全文
posted @ 2016-12-27 13:47 AlexLeeLi 阅读(1709) 评论(0) 推荐(0) 编辑
摘要: int i=10;方法1:Console.WriteLine(i.ToString("D5"));方法2:Console.WriteLine(i.ToString().PadLeft(5,'0'));//推荐方法3:Console.WriteLine(i.ToString("00000")); 在 阅读全文
posted @ 2016-12-21 11:20 AlexLeeLi 阅读(683) 评论(0) 推荐(0) 编辑
摘要: alter table dbo.user_PersonManagement add F_FGBM nvarchar(500)GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'分管部门|11|复选框|必填项|显示| 阅读全文
posted @ 2016-12-12 15:32 AlexLeeLi 阅读(276) 评论(0) 推荐(0) 编辑
摘要: string[] elements = new string[50]; if (Array.IndexOf<string>(elements, "a" ) != -1 ) { //存在 //返回的值就是 "a" 在数组中的下标 } else { //不存在 } 阅读全文
posted @ 2016-12-09 16:15 AlexLeeLi 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 开始--运行中 输入 cmd 进入界面 再输入路径 E:\BaiduYunDownload\AccessDatabaseEngine_X64.exe /passive 即完成安装。 注意,路径要改成你自己的文件存放路径,上图只是参考例子。 2、查看注册表 在开始--运行中打入 regedit 回车 阅读全文
posted @ 2016-12-08 13:52 AlexLeeLi 阅读(11036) 评论(1) 推荐(0) 编辑