搜索列表
-
利用ASP实现事务处理的方法
【ASP编程】 利用ASP实现事务处理的方法 选择自 AppleBBS 的 Blog 关键字 利用ASP实现事务处理的方法 出处 在开发Web应用时,无一例外地需要访问数据库,以完成对数据的查询、插入、...
利用ASP实现事务处理的方法 -
用google 赶快来赚美金附图文使用教程第1/2页
【网站运营】申请地址: 透过 Google AdSense 使您的网站产生收益 这就是Google新推出的AdWords 推介广告,当用户通过您的推介注册了Google AdWords,并且花费了第一笔 USD100.00 的广告费,Google就会将 USD20.00 存入您的帐户。 * Google AdWords 让广告客户制作广告并在 Google.com 以及 Google 内容网络中加以展示...
用google赶快来赚美金附图文使用教程 -
用ASP做的DNS LOOKUP程序
【ASP编程】运行环境,NT(SERVER、WORKSTATION)、W2K 服务器上需要安装WSH2.0或者更高版本 如果您的系统目前没有安装WSH2.0,您可以从以下这个地址去下载它 http://www.microsoft.com/msdownload/vbscript/scripting.asp 里面包含了WSH2.0 下面是源代码 <%@ Language="VBScript"&n...
用ASP做的DNSLOOKUP程序 -
用ASP实现对ORACLE数据库的操作
【ASP编程】ASP(Active Server Pages)是微软公司为开发互联网应用程序所提出的工具之一,ASP与数据库的联接一般通过ADO(Activex Data Object)来实现的,就象《计算机世界》2000年3月20日的《用ASP对SQL Server数据库操作》文章介绍的一样,ADO可以完全支持Microsoft S...
用ASP实现对ORACLE数据库的操作 -
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数据库备份、恢复! -
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中经常用到的代码[推荐]第1/4页
【ASP编程】用数据库语句 1.select 语句:命令数据库引擎从数据库里返回信息,作为一组记录。 2.insert into 语句:添加一个或多个记录至一个表。 3.update 语句:创建更新查询来改变基于特定准则的指定表中的字段值。 4.delete 语句:创建一个删除查询把记录从 from 子句列出...
简单的ASP中经常用到的代码 -
javascript asp教程 日期相关
【ASP编程】JavaScript is loosely typed. Database files are not. If you put text into a Boolean database column or a Boolean value into a date/time column, then you will get an error. For the most part this is not a problem, except for date/time. It does not correspond to the JavaScript Date Object...
javascriptasp教程日期相关 -
javascript asp教程添加和修改
【ASP编程】The Connection Execute(): If you want to retrieve data from a database then you have no choice but to use a Recordset. However, for the purposes of adding, updating, and deleting data you don't necessarily have to have a Recordset. It's up to you. For the purposes of adding, updating and delet...
javascriptasp教程添加和修改 -
javascript asp教程创建数据库连接
【ASP编程】While this section is devoted to ASP database utilization, it very important to remember that this web site is not intended to be a thorough ASP resource. Remember, the focus of this site is strictly limited to how to use JavaScript as your primary scripting language for ASP. You'...
javascriptasp教程创建数据库连接 -
javascript asp教程服务器对象
【ASP编程】Overview: The Server Object has seven (7) Methods, one (1) Property, zero (0) Events, and zero (0) Collections. List of Methods: Server Methods CreateObject( ) Server.CreateObject("ADODB.Recordset")Create an instance of an Object Execute( ) Server.Execute("fileName.asp")E...
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对象