搜索列表
-
用js实现的DIV+CSS编辑器代码
【CSS/HTML】DIV+CSS编辑器 var sInitColor = null; function callColorDlg(obj){ if (sInitColor == null) var sColor = dlgHelper.ChooseColorDlg(); else var sColor = dlgHelper.ChooseColorDlg(sInitColor); sColor = sColor.toString(16); if (sColor.length < 6) { var sTempString = "000000".substring...
用js实现的DIV+CSS编辑器代码 -
学习正则表达式30分钟入门教程(第二版)
【正则表达式】30分钟内让你明白正则表达式是什么,并对它有一些基本的了解,让你可以在自己的程序或网页里使用它
正则表达式30分钟 -
XML 增、删、改和查示例
【XML/RSS】1.已知有一个XML文件(bookstore.xml)如下: <?xml version="1.0" encoding="gb2312"?><bookstore> <book genre="fantasy" ISBN="2-3631-4"> <title>Oberon's Legacy</title> <author>Corets, Eva</author...
XML增、删、改和查示例 -
ASP中怎么实现SQL数据库备份、恢复!
【ASP编程】1、ASP中怎么实现SQL数据库备份、恢复! 答:asp在线备份sql server数据库: 1、备份 <% SQL="backup database 数据库名 to disk='"&Server.MapPath("backup")&"\"&"backuptext.dat"&"'" set cnn=Server.createobject("adodb.connection") cnn....
ASP中怎么实现SQL数据库备份、恢复! -
DB2数据同步方面的经验
【DB2】正在看的db2教程是:DB2数据同步方面的经验。规划方案: 假定您将使用一个生成报告的应用程序。此应用程序需要存在于 SAMPLE 数据库的 DEPARTMENT 表中的数据。您不想使用直接来自源表的数据,而想将更改复制到只能由生成报告的应用程序读取的目标表中。为了便于管理,您要...
|DB|B2|2数|数据|据同|同步|步方|方面|面的|的经|经验|验| -
IBM DB2 基本性能调整
【DB2】正在看的db2教程是:IBM DB2 基本性能调整。缓冲池 如果你有使用DB2 UDB的经验,你应该知道, 缓冲池是内存中的一些单独分配给DB2 数据库管理器的空间,让它去做为数据库添加新数据或者去响应一个查询从磁盘返回一些数据数据页的缓冲区。由于从内存中访问数据势必比从磁盘上读取要快的多,因此通过减...
|IB|BM|MD|DB|B2|2基|基本|本性|性能|能调|调整|整| -
DB2优化(简易版)
【DB2】正在看的db2教程是:DB2优化(简易版)。预备—monitors ON db2 "update monitor switches using lock ON sort ON bufferpool ON uow ON table ON statement ON" 打开监视开关,获取需要的性能信...
|DB|B2|2优|优化|化(|(简|简易|易版|版)|)| -
用正则和xmlHttp实现的asp小偷程序
【ASP编程】复制代码 代码如下:<% '======================================== class EngineerSearch '老龙:laolong9999@sina.com ':模拟XML获取http标记资源(用过之后就知道为什么XML有用:)) '利用引擎搜索(显示引擎信息或其超连接网站上的信息或直接一个指定页面的相关信息...
用正则和xmlHttp实现的asp小偷程序 -
Default style sheet for HTML 4
【CSS/HTML】This appendix is informative, not normative. This style sheet describes the typical formatting of all HTML 4 ([HTML4]) elements based on extensive research in...
DefaultstylesheetforHTML4 -
asp,VBscript语法错误,史上最全最详细最精确第1/3页
【ASP编程】ASP错误总结 -------------------------------------------------------------------------------- Microsoft VBscript语法错误(0x800A03E9)-->内存不足 Microsoft VBscript语法错误(0x800A03EA)-->语法错误 Microsoft VBscript语法错误(0x800A03EB)-->缺少 ':...
aspVBscript语法错误史上最全最详细最精确 -
javascript asp教程第十二课---session对象
【ASP编程】Overview: The Session Object is how you track a single user across many pages. It has four (4) properties, two (2) collections, one (1) method, and two (2) events. Get Started: In this series of examples we will create a password system. We will use the Session Object to track whet...
javascriptasp教程第十二课---session对象 -
javascript asp教程第十一课--Application 对象
【ASP编程】Overview: The Application Object represents a collection of ASP pages. The Application object has zero (0) properties, two (2) collections, two (2) methods, and two (2) events. Get Started: Below are a couple scripts for lesson11. <%@LANGUAGE="JavaScript"%> <%...
javascriptasp教程第十一课--Application对象