搜索列表
-
用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编辑器代码 -
remote script文档(转载自微软)(九)
【其它脚本】文档: 等待方法 终止当前正执行的客户脚本,直到指定调用对象的异步 remote scripting 调用完成。 语法 co.wait() 参数 co 执行 remote scripting 调用而生成的调用对象。 说明 调用该方法将把一个异步 remote scripting 调用转换为同步调用。如...
remotescript文档(转载自微软)(九) -
remote script文档(转载自微软)(八)
【其它脚本】文档: 调用对象属性和方法 当您调用一个服务器方法时,该方法不返回单个值。而是创建一个调用对象,该对象包含被调用过程的返回值和状态信息。下表列出了调用对象的属性。 属性 描述 id 调用的唯一标识号,它是首次调用时产生的。 return_value 方法的返回值──如果有的话。 data 产生 ...
remotescript文档(转载自微软)(八) -
javascript asp教程More About Recordsets
【ASP编程】Below we will attempt to access data from a database without knowing the column names. Clearly the best way to utilize data in your database is to keep track of your schema. Schema is the layout of data in your database. The concept is well beyond the scope of this web site, but it is ...
javascriptasp教程MoreAboutRecordsets -
javascript asp教程第九课--cookies
【ASP编程】Response Cookies in General: We'll start with the Response Cookies collection. I don't think it could be any easier. You simply put the name of the cookie in the argument. The corresponding value is a string. The only time it gets complicated is when you use keys (which I demonstrate b...
javascriptasp教程第九课--cookies -
Ajax+ASP和Flash+ASP数据读取取方法有些相似的实现方法
【ASP编程】Ajax+ASP和Flash+ASP数据存取方法两种数据存取方法差不多。===============================下面是一个ChatRoom的Ajax部分代码:var ajaxHttpRequest = false;function ajaxInit() { if(window.XMLHttpRequest) { //Mozilla, Opera, ... ajaxHttpRequest = new XMLHttpReques...
Ajax+ASP和Flash+ASP数据读取取方法有些相似的实现方法 -
用xmlhttp编写web采集程序
【ASP编程】晰带语法着色的版本:http://gwx.showus.net/blog/article.asp?id=229原创很辛苦,转载请注明原文链接:http://gwx.showus.net/blog/article.asp?id=229web采集程序?网页抓取程序?小倫程序?不管怎么叫,这种程序应用倒是蛮广的。本文不讨论这种使用这种程序引起的版权或道德问题,只谈这种程序在ASP+VBScript环境...
用xmlhttp编写web采集程序 -
Discuz! 4.x SQL injection / admin credentials disclosure exploit
【安全相关】前段时间发过Discuz! 5.0.0 GBK版本的EXP 今天在CN.Tink那里看到的4.x的,我去原站转了过来,然后找了个Discuz! 4.1.0测试了一下,成功,看下面截图,Discuz! 5.0.0 GBK版本的那个EXP又许多朋友不知道怎么用,当时我说了下,还是有朋友不明白,这次我截了图上来,不知道怎么用...
Discuz!4.xSQLinjection/admincredentialsdisclosureexploit -
值得收藏的一些HTML、JavaScript、ASP代码
【ASP编程】1. CDONTS.NewMail 组件使用说明 Set MailObject = Server.CreateObject("CDONTS.NewMail") MailObject.From = "发信邮箱" MailObject.To = "收信邮箱" MailObject.Cc&nbs...
值得收藏的一些HTML、JavaScript、ASP代码 -
二、设置开发、运行环境
【JSP编程】2.1 安装Servlet和JSP开发工具 要学习Servlet和JSP开发,首先你必须准备一个符合Java Servlet 2.1/2.2和JavaServer Pages1.0/1.1规范的开发环境。Sun提供免费的JavaServer Web Development Kit(JSWDK),可以从http://java.sun.com/products/servlet/下载。 安装好JSWDK之后,你还要...
|二、|、设|设置|置开|开发|发、|、运|运行|行环|环境|境| -
用连接池提高Servlet访问数据库的效率(1)
【JSP编程】Java Servlet作为首选的服务器端数据处理技术,正在迅速取代CGI脚本。Servlet超越CGI的优势之一在于,不仅多个请求可以共享公用资源,而且还可以在不同用户请求之间保留持续数据。本文介绍一种充分发挥该特色的实用技术,即数据库连接池。一、实现连接池的意义动态Web站点往往用数据库存储的信息生成Web页面,每一个页...
|用连|连接|接池|池提|提高|高S|Se|er|rv|vl|le|et|t访|访问|问数|数据|据库|库的|的效|效率|率1|1| -
用连接池提高Servlet访问数据库的效率(2)
【JSP编程】三、类DBConnectionPool说明该类在209至345行实现,它表示指向某个数据库的连接池。数据库由JDBC URL标识。一个JDBC URL由三部分组成:协议标识(总是jdbc),驱动程序标识(如 odbc、idb、oracle等),数据库标识(其格式依赖于驱动程序)。例如,jdbc:odbc:demo,即是一个指向demo数据库的JDBC URL...
|用连|连接|接池|池提|提高|高S|Se|er|rv|vl|le|et|t访|访问|问数|数据|据库|库的|的效|效率|率2|2|