Response对象常与其它的代码混合使用。下面这段代码演示了response.write与其 它代码混用的例 子。 <html<head <titleres5.asp</title </head<body bgcolor="#FFFFFF" <% ' The response object can be used to write text ' but sometimes some functions must be used to transform ' the text instead of sending as is to the browser response.write "&l...[ 查看全文 ]
要建立数据库连接,首先应创建connection对象的实例,常用下面的脚本创建一个Connection对象实例: set conn=Server.CreatObject("ADODB.Connection") Dbpath=Server.MapPath(用户.mdb") conn.open"driver={Microsoft Access Driver(*.mdb);dbq="&Dbpath 这时已经建立了数据库的连接,可用"IsObject()"函数来测试是否已完成联接,代码如下: If IsObject(conn) then Response.Write"已经...[ 查看全文 ]
MSXML中提供了Microsoft.XMLHTTP对象,能够完成从数据包到Request对象的转换以及发送任务。 创建XMLHTTP对象的语句如下: Set objXML = CreateObject(Msxml2.XMLHTTP) 或 Set objXML = CreateObject(“Microsoft.XMLHTTP”) ' Or, for version 3.0 of XMLHTTP, use: ' Set xml = Server.CreateObject(MSXML2.ServerXMLHTTP) 对象创建后调用Open方法对Request对象进行初始化,语法格式为: poste...[ 查看全文 ]