搜索列表
-
实例讲解实现抓取网上房产信息的ASP程序
【ASP编程】<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%><!-- #include file="conn.asp" --> <!-- #include file="inc/function.asp" --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"...
实例讲解实现抓取网上房产信息的ASP程序 -
用存储过程、GetRows()、抽取10万条数据的速度测试
【ASP编程】现有10W条数据,Access数据库保存 通过正常提取: 复制代码 代码如下:<% Set conn= Server.CreateObject("ADODB.Connection") c&Server.MapPath("db2.mdb") conn.Open connstr Set rs = Server.CreateObject ("A...
用存储过程、GetRows()、抽取10万条数据的速度测试 -
DB2常用傻瓜问题1000问(四)第1/2页
【DB2】正在看的db2教程是:DB2常用傻瓜问题1000问(四)。 100.如何删除序列? DROPSEQUENCESEQUENCE_NAME 101.DB2支持导入(IMPORT)的文件格式有? 有:DEL,ASC,IXF,WSF等 102.DB2支持导出(EXPORT)的文件格式有? 有:DEL,IXF,WSF等. 不支持ASC格式...
|DB|B2|2常|常用|用傻|傻瓜|瓜问|问题|题1|10|00|00|0问|问四|四| -
简单的ASP中经常用到的代码[推荐]第1/4页
【ASP编程】用数据库语句 1.select 语句:命令数据库引擎从数据库里返回信息,作为一组记录。 2.insert into 语句:添加一个或多个记录至一个表。 3.update 语句:创建更新查询来改变基于特定准则的指定表中的字段值。 4.delete 语句:创建一个删除查询把记录从 from 子句列出...
简单的ASP中经常用到的代码 -
用ASP打开远端MDB文件的方法
【ASP编程】如果你用ODBC connection (DSN or DSN-less)来访问远端的(UNC path)数据库, OLEDB会出现以下错误信息: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC&nbs...
用ASP打开远端MDB文件的方法 -
简单的ASP分页代码(测试正确)第1/2页
【ASP编程】本文匆匆已经全面测试,支持ASP+ACCESS以及ASP+SQL,请修改相关部分就可以了。 注意,匆匆谢绝基础问题回答,已经本代码已经很简单,如果还不懂可以参阅本站其他栏目。 <!--#include file="conn.asp"--> <% '以上为包含数据库衔接文件 '--------------------------------------------查...
简单的ASP分页代码(测试正确) -
shtml精简教程让你知道什么是shtml
【CSS/HTML】目前,主要有以下几种用用途: 1、显示服务器端环境变量 2、将文本内容直接插入到文档中 3、显示WEB文档相关信息(如文件制作日期/大小等) 4、直接执行服务器上的各种程序(如CGI或其他可执行程序) 5、设置SSI信息显示格式(如文件制作日期/大小显示方式) 高级...
shtml精简教程让你知道什么是shtml -
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教程Recordset记录
【ASP编程】Recordset is another created/instanciated Object. It is a collection of data taken from a database. Recordset has 26 properties, 25 methods, 11 events, and two (2) collections. The vast majority of Recordset is beyond the scope of this web site. Quick Aside: The database we are using for l...
javascriptasp教程Recordset记录 -
javascript asp教程错误处理
【ASP编程】The ASPError Object has zero (0) Methods, nine (9) Properties, zero (0) Events, and zero (0) Collections. AspCode AspDescription Category Column Description File Line Number SourceThe way you access the ASPError Properties is with a Server Method. Yeah, I know; it does...
javascriptasp教程错误处理 -
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对象