2010-04-04 71 views

回答

0

不確定你想要什麼,但你會想要使用Microsoft XMLHTTP請求對象。我的語法可能會有點生疏,你應該加入錯誤處理,但是這看起來大致是這樣的(完整的參考容易找到谷歌):

dim url, contents 
dim xmlhttp_o 
set xmlhttp_o = createobject("microsoft.xmlhttp") 

'* generate complete url with the keys in your db *' 
url = "http://linkedin.com/<whatever...>" 

xmlhttp_o.open "get", url, false 
xmlhttp_o.send 

contents = xmlhttp_o.responsetext 

在這一點上,contents包含你的頁面的HTML想要在LinkedIn上。一個小小的字符串操作可以得到任何你想要的。

相關問題