在程式設計的過程中,有時候要遇到獲取系統的網絡卡實體地址,我們知道asp程式語言是最原始的語言,沒有物件導向的語言簡單操作,不過asp還是能獲取本地網絡卡的mac位址的,直接上程式,複製下面的程式到,需要呼叫的位置,用getmacaddress(「ip」)呼叫即可。
'//返回:getmacaddress()
function getmacaddress(strip)
set net = server.createobject("wscript.network")
set sh = server.createobject("wscript.shell")
sh.run "%comspec% /c nbtstat -a " & strip & " > c:" & strip & ".txt",0,true
set sh = nothing
set fso = createobject("scripting.filesystemobject")
set ts = fso.opentextfile("c:" & strip & ".txt")
macaddress = null
do while not ts.atendofstream
data = ucase(trim(ts.readline))
if instr(data,"mac address") then
macaddress = trim(split(data,"=")(1))
exit do
end if
loop
ts.close
set ts = nothing
fso.deletefile "c:" & strip & ".txt"
set fso = nothing
getmacaddress = macaddress
end function
以上子程式,可以放在程式中,專門呼叫。。
獲取手機資訊
獲取手機資訊 應用程式的名稱和版本號等資訊都儲存在mainbundle的乙個字典中,用下面 可以取出來 nsdictionary infodict nsbundle mainbundle infodictionary nsstring versionnum infodict objectforkey...
手機獲取座標
手機端獲取pagex和pagey touchstart事件下獲取 e.originalevent.targettouches 0 pagex。touchmove事件下獲取 e.originalevent.targettouches 0 pagex。touchend事件的下獲取 e.originale...
獲取手機引數
1 應用名稱 2 nsdictionary infodictionary nsbundle mainbundle infodictionary cfbundledisplayname 4 nslog 應用名稱 5 6 版本號7 nsstring shortversion infodictionary...