|
ASP
Server-CreateObject
More detial or script code example
Set oXMLHttp = Server.CreateObject("MSXML2.ServerXMLHTTP")
Set oXMLHttp = Server.CreateObject("MSXML2.ServerXMLHTTP.3.0")
檔案下載語法MSXML2.ServerXMLHTTP Description: Server.CreateObject("MSXML2.ServerXMLHTTP")
this can check server header
to check if the server is ready to run HTTP or not
------ attention -------
a bad HTTP header will not ne indexed by
search engine bots
same as CGI perl.pl script must write HTTP headers

ASP
Server-CreateObject
More detial or script code example
Set HttpObj = Server.CreateObject("AspHTTP.Conn")
獲取網頁資料 Description: AspHTTP.Conn can read websites data
----------- note ---------
AspHTTP.com may not read https://
獲取某網頁(自己或他人的網頁)資料
Custom Content-Type headers for POST
自动转向
支持多种登陆环境
将远程文件转换成二进制流文件
允许客户端HTTP请求。 
ASP
Server-CreateObject
More detial or script code example
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
Description: Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
or can be wrote like this ::
Set Retrieval = CreateObject("Microsoft.XMLHTTP")
可寫成
Server.CreateObject("Microsoft.XMLHTTP")
或是
CreateObject("Microsoft.XMLHTTP")
ASP
Server-CreateObject
More detial or script code example
Set XMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
HDserver=xmlhttp.getResponseHeader("Server")
Description: Set XMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
HDserver=xmlhttp.getResponseHeader("Server")

ASP
Server-CreateObject
More detial or script code example
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
XML Description: Server.CreateObject("Microsoft.XMLDOM")

|