dev.kanngard.net make sure you visit my new blog at: johankanngard.net

Short tip: Getting a HTML page on the web from LotusScript

by Johan Känngård / [LotusScript] / 2002-09-21 / #29


This can be used to get a HTML / XML document on the web from LotusScript:

Dim req As Variant
Set req = CreateObject("Msxml2.XMLHTTP")
Call req.open("GET", "http://server/", False)
Call req.send()
Print "Response: " & req.responseText

The above requires that Microsofts "MSXML" component is installed. It can be found at Microsofts XML site.