ASP Ping 簡(jiǎn)要說(shuō)明
發(fā)表時(shí)間:2024-06-12 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]主頁(yè):http://www.serverobjects.com/ 下載:http://www.serverobjects.com/comp/aspping.zip AspPing提供命令行程序ping相同的基本功能,AspPing是免費(fèi)的,沒(méi)有免費(fèi)的技術(shù)支持 安裝: 將dll文件,拷貝到一個(gè)子目錄...
主頁(yè):http://www.serverobjects.com/
下載:http://www.serverobjects.com/comp/aspping.zip
AspPing提供命令行程序ping相同的基本功能,AspPing是免費(fèi)的,沒(méi)有免費(fèi)的技術(shù)支持
安裝:
將dll文件,拷貝到一個(gè)子目錄,例如NT的目錄\winnt\system32,win95/98的目錄\windows\system.
注冊(cè)dll文件,命令行將當(dāng)前目錄換到該目錄,然后鍵入:
regsvr32 aspping.dll
簡(jiǎn)單實(shí)例:
使用這個(gè)組件十分簡(jiǎn)單
1.創(chuàng)建對(duì)象
2.設(shè)定一些屬性
3.調(diào)用Ping方法
<%
rem ***********************************************************
rem * 創(chuàng)建對(duì)象
rem ***********************************************************
Set Pinger = Server.CreateObject("AspPing.Conn")
rem ***********************************************************
rem * 設(shè)定要ping的主機(jī)
rem ***********************************************************
Pinger.RemoteHost = "www.microsoft.com"
rem ***********************************************************
rem * ping遠(yuǎn)程主機(jī)的次數(shù),可選
rem * 缺省值為 1
rem ***********************************************************
Pinger.PingCount = 2
rem ***********************************************************
rem * Ping 然后獲得ping的結(jié)果
rem ***********************************************************
Response.Write "<pre>" & Pinger.Ping & "</pre>"
rem ***********************************************************
rem * 釋放對(duì)象
rem ***********************************************************
Set Pinger = nothing
%>
AspPing的屬性
RemoteHost - string 字符串
Blocksize - byte 字節(jié)
TTL - byte 字節(jié)
AspPing方法
Ping - 返回結(jié)果(字符串) (出處:熱點(diǎn)網(wǎng)絡(luò))