上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
摘要: --数据源格式,放到任意程序中部署接口即可-- -- -- --张三 --男 -- -- --李四 --女 -- -- --王武 --男 -- -- --赵柳 --女 -- -- --武士刀 --男 -- -- -- --调用webService---------------- declare @ServiceUrl as varchar(1000) DECLARE ... 阅读全文
posted @ 2018-08-01 14:46 听雨的人 阅读(1629) 评论(0) 推荐(0)
摘要: SQL Server解析XML数据的方法。 --下面为多种方法从XML中读取EMAIL DECLARE @x XML SELECT @x = ' <People> <dongsheng> <Info Name="Email">dongsheng@xxyy.com</Info> <Info Name= 阅读全文
posted @ 2018-08-01 14:37 听雨的人 阅读(751) 评论(0) 推荐(0)
摘要: --开启 Ole Automation Procedures sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'Ole Automation Procedures', 1; GO RECONFIGURE; GO EXEC sp_configure 'Ole Automation Procedur... 阅读全文
posted @ 2018-08-01 14:33 听雨的人 阅读(1453) 评论(0) 推荐(0)
摘要: { // Required "manifest_version": 2, // manifest编写规范版本,目前主流2 "name": "My Extension", // 插件名 "version": "versionString", ... 阅读全文
posted @ 2018-07-18 21:49 听雨的人 阅读(4289) 评论(0) 推荐(0)
摘要: http://wthrcdn.etouch.cn/WeatherApi?citykey=101010100通过城市id获得天气数据,xml文件数据,当错误时会有<error>节点http://wthrcdn.etouch.cn/WeatherApi?city=北京通过城市名字获得天气数据,xml文件 阅读全文
posted @ 2018-05-15 11:50 听雨的人 阅读(1122) 评论(0) 推荐(0)
摘要: 常用效果总结(需要引用animate.css) <!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>CSS3动画实现方式大全</title> <script src="jquery-2.1.0.min.js" 阅读全文
posted @ 2018-04-20 18:25 听雨的人 阅读(1042) 评论(0) 推荐(0)
摘要: 在一个table中,我需要在td里面绝对定位一个div, 写法:td{position:relative;} div{position:absolute;} OK,就这么简单,思路也没什么问题,并且在chrome中结果完美。 BUT!!! IE(此处只测了一下IE,或许别的浏览器也不行,自行测试), 阅读全文
posted @ 2018-04-15 15:04 听雨的人 阅读(362) 评论(0) 推荐(0)
摘要: /// /// 根据指定时间段计算工作日天数 /// /// /// /// /// public static int BusinessDaysUntil(DateTime firstDay, DateTime lastDay, params Date... 阅读全文
posted @ 2018-03-21 10:37 听雨的人 阅读(2196) 评论(0) 推荐(0)
摘要: 先看一下整体效果 页面html <div class="row"> <div class="tabs-container"> <ul class="nav nav-tabs"> <li> <a style="color: #676a6c;padding: 10px 30px 10px 40px;"> 阅读全文
posted @ 2018-03-06 10:37 听雨的人 阅读(462) 评论(0) 推荐(0)
摘要: 在表单填写时突然发现autocomplete 失效了 网上搜索后得出大概意思是在某些情况下确实无效【捂脸】 解决方案 大致原因是浏览器默认为type为password的input标签自动填充密码 这样可以根据type来控制自动填充的出现,方案如下 <input id="oldPassword" ty 阅读全文
posted @ 2018-02-23 10:44 听雨的人 阅读(716) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页