Short tip: Getting a HTML page on the web from LotusScript
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.