上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 55 下一页
摘要: 当从SQLite数据库中删除数据时, 未用的磁盘空间将会加入一个内部的“自由列表”中。 当你下次插入数据时,这部分空间可以重用。磁盘空间不会丢失, 但也不会返还给操作系统。 如果删除了大量数据,而又想缩小数据库文件占用的空间,执行 VACUUM 命令。 VACUUM 将会从头重新组织数据库。这将会使 阅读全文
posted @ 2012-06-28 08:58 无恨星晨 阅读(3441) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web; namespace Common{ /// <summary> /// 用于方便使用Cookie的扩 阅读全文
posted @ 2012-06-14 08:56 无恨星晨 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 例子1:给网页中所有的<p> 元素添加onclick事件。 <p>china</p> <p>english</p> (1) 获取所有的<p> 元素。 (2) 对<p> 元素进行循环(因为获取的是数组对象)。 (3) 给每一个<P>元素添加行为事件。 javascript 代码如下: var item 阅读全文
posted @ 2012-06-07 14:42 无恨星晨 阅读(681) 评论(0) 推荐(0) 编辑
摘要: DOM操作的分类 DOM Core 并不专属于javascript,任何一种支持DOM的程序设计语言都可以使用它。 它的用途并非仅限与处理网页,也可以用来处理任何一种使用标记语言编写出来的文档。例如XML javascript中的getElementById(),getElementByTagNam 阅读全文
posted @ 2012-06-07 11:49 无恨星晨 阅读(4642) 评论(0) 推荐(0) 编辑
摘要: 最近发现jQuery越来越火,用它的人也越来越多。jQuery最强大的亮点莫过于它的CSS3 selector和极其简单的Ajax请求调用。 最近一哥们在做一个Ajax长连接的项目,页面需要和服务器保持长连接,而且在连接超时后需要重新请求连接,过程中他问我要用到什么,我也是想都没想就告诉他用jQue 阅读全文
posted @ 2012-06-06 16:40 无恨星晨 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 最近一直在做WebService的测试,考虑到手工测试的困难,所以特意去寻找好的测试工具,现在做一个整理。1、.NET WebService Studio这款工具出自微软内部,最大的优点是可视化很好,不用去看那些XML文件,WebService的基础内容就有XML,但是测试中Case过多,每次测试结果都去看XML文件,看一轮下来对个人的视力是个很大的损害。从上图可以看到,操作上也很方便,只需要把Service部署到IIS后,在WSDL EndPoint中输入这个要测的Service的URL,点击Get按钮,就能把Service要输入的参数列表取出来,测试的时候只需要在输入参数的 值,点击Inv 阅读全文
posted @ 2012-05-31 16:22 无恨星晨 阅读(276) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Security.Cryptography; using System.Text;namespace Maticsoft.Common.DEncrypt{/// <summary>/// DES加密/解密类。 /// Copyright (C) Maticsoft/// </summary>public class DESEncrypt{public DESEncrypt(){}#region ========加密======== /// <summary> /// 加密 /// </summary& 阅读全文
posted @ 2012-05-22 10:44 无恨星晨 阅读(783) 评论(0) 推荐(0) 编辑
摘要: 声明:private Point mouseOffset; //记录鼠标指针的坐标 private bool isMouseDown = false; //记录鼠标按键是否按下 调用 : BLL.BitmapRegion.CreateControlRegion(this, new Bitmap(Ap 阅读全文
posted @ 2012-05-22 09:36 无恨星晨 阅读(704) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.IO;using ICSharpCode.SharpZipLib.BZip2;using System.Text; name 阅读全文
posted @ 2012-05-22 09:31 无恨星晨 阅读(1208) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Reflection.Emit;using System.Reflection;using System.Data; namespace Comm 阅读全文
posted @ 2012-05-22 09:17 无恨星晨 阅读(2067) 评论(0) 推荐(1) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 55 下一页