上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: [代码][代码] 阅读全文
posted @ 2008-10-30 17:11 leavingme 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 最近做了下mysql的数据库操作,以前没用过,把我的方法写一下,mysql新手可以借鉴下。我这里是用的connector/net连接的。1.去http://dev.mysql.com/downloads/connector/net/5.0.html下载MySql Connector/Net 5.0,我用的是5.0.8.1,下载后安装2.到安装目录,如D:\Program Files\MySQL... 阅读全文
posted @ 2008-09-21 21:44 leavingme 阅读(4531) 评论(2) 推荐(0) 编辑
摘要: 是因为NETWORK_SERVICE帐户没有对这个MDF文件的读写权限。 阅读全文
posted @ 2008-07-21 19:59 leavingme 阅读(274) 评论(0) 推荐(0) 编辑
摘要: JavaScript为函数对象定义了两个方法:apply和 call,它们的作用都是将函数绑定到另外一个对象上去运行,两者仅在定义参数的方式有所区别: Function.prototype.apply(thisArg,argArray); Function.prototype.call(thisArg[,arg1[,arg2…]]); 从函数原型可以看到,第一个参数都被取名为 thisArg... 阅读全文
posted @ 2008-07-13 22:29 leavingme 阅读(218) 评论(0) 推荐(0) 编辑
摘要: $$是prototype框架里的一个亮点了,也是一种快捷方式,通过它可以根据css样式选择页面中的元素,它支持以下几种css选择方式。 $支持的css选择符 元素标签(tag)。$$("li") 元素ID,id前要加#。$$("#div_test") css类,类名前加.。$$(".style1") 元素是否具有某个属性。$$("a[class]") 元素的某个属性是否符合特定的条件。$$("a[... 阅读全文
posted @ 2008-05-09 10:35 leavingme 阅读(462) 评论(0) 推荐(0) 编辑
摘要: I found a tutorial with PDF filetype,but there's no Chinese version available.1.Development Overviewhttp://www.rietta.com/firefox/Tutorial/overview.pdf2.Environment Setuphttp://www.rietta.com/firefox/... 阅读全文
posted @ 2008-05-07 20:49 leavingme 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 一、想要编写Firefox插件最简单的技术基础就是XML,JavaScript,剩下的就是稍稍的模仿能力和不知厌倦的尝试精神。二、需要的工具如下:1、UltraEdit (编辑相关的文件)2、1st JavaScript Editor (编写JavaScript)3、还需要以下Firefox插件用于调试:Chrome List, FireBug。其中尤其以FireBug最为重要,在开发过程中起到的... 阅读全文
posted @ 2008-05-07 20:44 leavingme 阅读(1343) 评论(0) 推荐(0) 编辑
摘要: 在JavaScript中,String的函数replace()简直太让人喜爱了。它灵活而强大的字符替换处理能力,让我不禁想向大家介绍它。replace()最简单的算是能力就是简单的字符替换。示例代码如下:var str = "javascript is a good script language";// 在此我想将字母a替换成字母Aalert(str.replace("a","A"));// jAvascript is a good script language我想大家运行后可以看到结果,它只替换了首字母。但如果加上正则表达式结果 阅读全文
posted @ 2008-04-24 15:01 leavingme 阅读(633) 评论(0) 推荐(0) 编辑
摘要: XTree2 阅读全文
posted @ 2008-04-23 20:51 leavingme 阅读(237) 评论(0) 推荐(0) 编辑
摘要: usingSystem;usingSystem.IO;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web... 阅读全文
posted @ 2008-04-22 21:05 leavingme 阅读(1888) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页