摘要: UIpath模拟用户登陆:直接登陆会暴露密码,导致信息安全。Uipath 提供了Get secure credential 方式,通过window 凭证,更好的管理密码。 如果activity里面没有该组件,表明项目中未引用该工具包 (解决方法:打开manager packages =>search 阅读全文
posted @ 2020-04-20 15:43 华琪 阅读(1633) 评论(0) 推荐(0) 编辑
摘要: 大型网站前端性能优化 http://www.cnblogs.com/and/p/3390676.html http://blog.csdn.net/qq_17765229/article/details/51417255 各浏览器特性 http://www.cnblogs.com/andhyp-ch 阅读全文
posted @ 2017-03-09 17:22 华琪 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1.HTML5 为什么只需要写 <!DOCTYPE HTML>? 答案解析: Html5不基于SGML,因此不需要对DTD进行引用,但是需要DOCTYPE来规范浏览器的行为(让浏览器按照他们应该的方式来运行)而HTML4.01基于SGML,所以需要对DTD进行引用,才能告知浏览器文档所使用的文档类型 阅读全文
posted @ 2017-03-09 15:40 华琪 阅读(1354) 评论(0) 推荐(0) 编辑
摘要: 开发界面: Visual Studio 2017 RTM正式版离线安装及介绍。 首先至官网下载:https://www.visualstudio.com/zh-hans/downloads/ VS 2017 正式版介绍: https://www.visualstudio.com/zh-hans/vs 阅读全文
posted @ 2017-03-09 10:08 华琪 阅读(307) 评论(0) 推荐(0) 编辑
摘要: Jquery 文字上下滚动效果示例代码 阅读全文
posted @ 2017-02-17 16:44 华琪 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 1.下载并引用My97DatePicker.js 2.将工作日休假的和周末上班的维护到数据库中 3.取出某段时间内的不上班日期集合 /// <summary> ///获取 无效日期集合 1 工作日休息(放假)2 休息日上班(上班) /// </summary> /// <returns></retu 阅读全文
posted @ 2016-10-09 15:09 华琪 阅读(1316) 评论(0) 推荐(0) 编辑
摘要: 预加载 Modal 用来提示一些后台活动(像Ajax请求)和阻止在这个活动期间的任何用户操作。 打开预加载 modal 我们也需要调用适当的App方法: $.show预加载([title])- 显示 预加载 modal title - string. Optional. 预加载 modal 标题. 阅读全文
posted @ 2016-09-18 13:43 华琪 阅读(1062) 评论(0) 推荐(0) 编辑
摘要: 直接上代码了 using System;using System.Collections.Generic;using System.Drawing;using System.Drawing.Imaging;using System.IO;using System.Linq;using System. 阅读全文
posted @ 2016-09-10 15:07 华琪 阅读(3113) 评论(1) 推荐(0) 编辑
摘要: sql Bom 递归查询: with t as(select * from Department where id=6union allselect a.* from Department a,t where a.ParentId=t.id)select * from t 阅读全文
posted @ 2016-08-29 14:21 华琪 阅读(613) 评论(1) 推荐(0) 编辑
摘要: 数据库中存在字段类型为xml 的数据, 现举例 xml 字段存储的数据为: <MortgageInfoShipList> <ITEMS> <ITEM> <ShipName>船名2</ShipName> <Location>处所2</Location> <RegisterLocation>船籍港2</ 阅读全文
posted @ 2016-08-29 13:53 华琪 阅读(1636) 评论(0) 推荐(0) 编辑