2010-04-04 166 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上。一个小小的字符串操作可以得到任何你想要的。

相关问题