一、WebService:WebService是以独立于平台的方式,通过标准的Web协议,可以由程序访问的应用程序逻辑单元。(1)应用程序逻辑单元:web服务包括一些应用程序逻辑单元或者代码。这些代码可以完成运算任务,可以完成数据库查询,可以完成计算机程序能够完成的任何工作。(2)可由程序访问:当前...
分类:
Web开发 时间:
2015-05-26 20:29:09
收藏:
0 评论:
0 赞:
0 阅读:
200
创建错误日志表:CREATE TABLE ErrorLog(errNum INT,ErrSev NVARCHAR(1000),ErrState INT,ErrProc NVARCHAR(1000),ErrLine INT, ErrMsg NVARCHAR(2000))创建错误日志记录存储过程:CRE...
分类:
数据库技术 时间:
2015-05-26 20:28:59
收藏:
0 评论:
0 赞:
0 阅读:
259
方案:通过option标签的select属性来获取文本与值jQuery中获得选中select值第一种方式$('#adverId option:selected').text();//选中的文本$('#adverId option:selected') .val();//选中的值$("#adverId...
分类:
Web开发 时间:
2015-05-26 20:28:49
收藏:
0 评论:
0 赞:
0 阅读:
229
先在配置文件components数组中加上:'cache'=>array( 'class'=>'CFileCache'),设置Cache:Yii::app()->cache->set('testcache', array(1,3,4,6));//默认有效期为一年Yii::app()->cache->...
分类:
系统服务 时间:
2015-05-26 20:28:39
收藏:
0 评论:
0 赞:
0 阅读:
378
1, 下载Arlang的下载:http://www.erlang.org/download/otp_win64_17.4.exeRabbitMQ下载:http://www.rabbitmq.com/releases/rabbitmq-server/v3.5.0/rabbitmq-server-3.5...
分类:
其他 时间:
2015-05-26 20:28:29
收藏:
0 评论:
0 赞:
0 阅读:
214
对 input与label同时设置CSSinput,label{ vertical-align:middle;}
分类:
Web开发 时间:
2015-05-26 20:28:19
收藏:
0 评论:
0 赞:
0 阅读:
1046
回溯法---子集和问题(6) 问题描述: 在给定的集合中挑选出所有和为C的子集和。在(2)的算法框架基础上:import java. util.Vector ;public class Subset extends CombineProblem { int[] arr ; int c; public...
分类:
其他 时间:
2015-05-26 20:28:09
收藏:
0 评论:
0 赞:
0 阅读:
249
大小端字节序 来自为知笔记(Wiz)
分类:
其他 时间:
2015-05-26 20:27:59
收藏:
0 评论:
0 赞:
0 阅读:
159
Example in project- First force signals in certain time and then noforce signals after some time. 1 #=================================================...
分类:
其他 时间:
2015-05-26 20:27:49
收藏:
0 评论:
0 赞:
0 阅读:
186
原文http://www.cnblogs.com/wujian1360/archive/2011/09/05/2167992.html创建一个 Timer+scheduledTimerWithTimeInterval: invocation: repeats:+ (NSTimer *)schedul...
分类:
其他 时间:
2015-05-26 20:27:39
收藏:
0 评论:
0 赞:
0 阅读:
167
function GetQueryString(name){ var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r!=nu...
分类:
Web开发 时间:
2015-05-26 20:27:29
收藏:
0 评论:
0 赞:
0 阅读:
226
在自动化过程中,有些导航按钮只有当鼠标悬浮在登录信息上时,它才能出现。这时候如果想要点击导航按钮直接用selenium的webDriver是无法定位的元素的,因为这些元素是隐藏的,只有鼠标悬浮时才出现,所以要记录一下,给大家一个参考 Actions action = new Actions(dr.....
分类:
其他 时间:
2015-05-26 20:27:19
收藏:
0 评论:
0 赞:
0 阅读:
270
http://jingyan.baidu.com/article/e75aca8551c31a142fdac67a.htmlUIScrollView可以用于显示多于一个屏幕的内容,超出屏幕范围的内容可以通过滑动进行查看方法/步骤常见属性CGSize contentSize :设置UIScrollVi...
分类:
其他 时间:
2015-05-26 20:26:59
收藏:
0 评论:
0 赞:
0 阅读:
209
时序图时序图用于描述对象之间的传递消息的时间顺序, 即用例中的行为顺序.当执行一个用例时, 时序图中的每条消息对应了一个类操作或者引起转换的触发事件.在 UML 中, 时序图表示为一个二维的关系图, 其中, 纵轴是时间轴, 时间延竖线向下延伸. 横轴代表在协作中各个独立的对象. 当对象存在时, 生命...
分类:
其他 时间:
2015-05-26 20:26:49
收藏:
0 评论:
0 赞:
0 阅读:
265
前期准备工具U盘安装 ubuntuhttp://www.linuxidc.com/Linux/2012-11/74695.htm http://6.xp510.com:801/xp2011/UltraISO.zip1.安装git sudo apt-get install git-core2.安装cu...
分类:
移动平台 时间:
2015-05-26 20:26:39
收藏:
0 评论:
0 赞:
0 阅读:
174
Reference: http://blog.csdn.net/me4546/article/details/6333225题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2838题目大意:每头牛有个愤怒值,每次交换相邻两个数进行升序排序,$cost=v...
分类:
编程语言 时间:
2015-05-26 20:26:29
收藏:
0 评论:
0 赞:
0 阅读:
177
原文地址:http://blog.csdn.net/johnsuna/article/details/1742799How is Grid Different from Table?Table and Grid share some common functionality, but each is...
分类:
Windows开发 时间:
2015-05-26 20:26:09
收藏:
0 评论:
0 赞:
0 阅读:
283
推荐!手把手教你用Githttp://mp.weixin.qq.com/s?__biz=MjM5OTA1MDUyMA==&mid=201723758&idx=1&sn=e5b7c27caec76992c348bf30e4bd30e8&scene=3#rd一:Git是什么?Git是目前世界上最先进的分...
分类:
其他 时间:
2015-05-26 20:26:00
收藏:
0 评论:
0 赞:
0 阅读:
215
测试的xml数据: George John Reminder Don't forget the meeting!新建SaxTest类继承至DefaultHandleimport org.xml.sax.Attributes;import org.xml.sax.SAXExce...
分类:
其他 时间:
2015-05-26 20:25:49
收藏:
0 评论:
0 赞:
0 阅读:
197
JavaScript控制页面5秒后自动跳转的代码5秒后自动跳转到http://www.jb51.net/
分类:
编程语言 时间:
2015-05-26 20:25:39
收藏:
0 评论:
0 赞:
0 阅读:
161