练手使用的Demo页面下载地址:http://pan.baidu.com/s/1o6078MIXPATH是一种选择器,XPATH在firefox中用firepath验证,XPATH常用符号说明 :/ 表示绝对路径,绝对路径是指从根目录开始 // 表示相对路径 . 表示当前层 .. 表示上一层 * 表...
分类:
其他好文 时间:
2015-10-14 13:59:36
阅读次数:
117
参考:http://blog.csdn.net/ghostfromheaven/article/details/8604738import win32serviceutil import win32service import win32event class PythonService(win32...
分类:
编程语言 时间:
2015-10-14 13:58:57
阅读次数:
251
今天,匆匆写了一个宏,但发现已被用来创建button开发工具菜单不见了。在十分钟找Excel转了个遍,终究Excel通常使用在中的选项,首先Mark下一个,离开同样找不到鞋。几个截面图。促进突然,你可以找到哈:接下来,你能在菜单条看到开发工具了:开发工具中有我们想要的各种button和控件,包含宏:...
分类:
其他好文 时间:
2015-10-14 13:58:45
阅读次数:
168
jQuery MiniUI可以使用Javascript和Html两种方式来创建对象。1)Javascript创建对象使用JavaScript创建对象,是最基本的方式,有如下几个要点:1)使用new关键字。如: var grid = new mini.DataGrid();2)使用set方法设置属性。...
分类:
Web程序 时间:
2015-10-14 13:58:36
阅读次数:
146
>set oracle_sid=orcl>orapwd file='D:\app\Administrator\product\11.2.0\dbhome_1\database\PWDORCL.ora' password=ys1orcl entries=10OPW-00001: Unable to o...
分类:
其他好文 时间:
2015-10-14 13:57:47
阅读次数:
354
1、插件介绍该确认框的默认样式如:1.1、插件默认参数// 默认参数$.confirm.defaults = { // 样式 css: "http://static.qianduanblog.com/css/jquery.confirm/default.min.css?v=" + Mat...
分类:
Web程序 时间:
2015-10-14 13:58:54
阅读次数:
167
1. 我有一个文本文件(user.txt),我知道数据是键值对形式的,但是不知道内容是什么。请写一个程序判断是否有"lisi"这样的键存在,如果有就改变其值为"100"分析: A:把文件中的数据加载到集合中 B:遍历集合,获取得到每一个键 C:判断键是否有为"lisi"的,如果有就修改其值为"...
分类:
编程语言 时间:
2015-10-14 13:57:32
阅读次数:
213
Nginx - rewrite 不区分大小写进行匹配分类:Nginx2014-05-28 19:251046人阅读评论(0)收藏举报Use (?i) to match case-insensitivelyeg:rewrite (?i)/(Cheap-[^\/]+\.html)(.*)$ /filte...
分类:
其他好文 时间:
2015-10-14 13:58:32
阅读次数:
210
转自http://wangwenhao.net/2011/10/20/mvc-in-ios/我们今天谈谈cocoa程序设计中的模型-视图-控制器(MVC)范型。我们将从两大方面来讨论MVC:什么是MVC?M、V、C之间的交流方式是什么样子的?理解了MVC的概念,对cocoa程序开发是至关重要的。一、...
分类:
移动开发 时间:
2015-10-14 13:58:18
阅读次数:
211
1> run {2> allocate channel prmy1 type disk;3> allocate channel prmy2 type disk;4> allocate channel prmy3 type disk;5> allocate auxiliary channel stby...
分类:
数据库 时间:
2015-10-14 13:57:28
阅读次数:
304
Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7might become4 5 6 7 0 1 2).You are given a target value t...
分类:
编程语言 时间:
2015-10-14 13:57:18
阅读次数:
263
1.安装依赖包(CentOS可采用yum)zypper in gcc gcc-c++ openssl-devel-32bit openssl-devel readline-devel readline-devel-32bit sqlite-devel tk tk-32bit tk-devel2.下载...
分类:
编程语言 时间:
2015-10-14 13:58:35
阅读次数:
181
了解一下BinaryReader 和BinaryWirte基元类型:using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;namespace ConsoleA...
分类:
其他好文 时间:
2015-10-14 13:55:18
阅读次数:
105
windows解压缩包、安装软件时,会生成一些临时文件存放在temp目录中,windows不会自动删除这些文件。临时文件目录可以在环境变量中查看和配置在工作机or个人PC机中中这个目录一般不会有什么问题,但是在server机器中,如果有服务进行大量的软件安装卸载或者解压缩包的操作,这个目录就会变得很...
ActionFilterAttribute是Action过滤类,该属于会在执行一个action之前先执行.而ActionFilterAttribute是 MVC的一个专门处理action过滤的类.基于这个原理 我们做一个权限限制例如:如何访问 HomeController 里的test action...
分类:
Web程序 时间:
2015-10-14 13:55:46
阅读次数:
152
(function($){ ????$.isBlank = function(obj){ ????????return(!obj || $.trim(obj) === ""); ????}; })(jQuery); $.isBlank(" ") //true $.isBlank("") //true $.isBlank("\n") //true $.i...
分类:
Web程序 时间:
2015-10-14 12:52:49
阅读次数:
782
浮点数不准,这个貌似基本都知道。但是在开发中很多人没有对它的使用产生警觉。如果你在开发iOS应用,你可能使用过如下代码判断系统版本: if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) ...
分类:
其他好文 时间:
2015-10-14 12:52:06
阅读次数:
148