scusate sono in hosting su aruba, ma questo il codice restituisce:
msxml3.dll error '800c0005'

The system cannot locate the resource specified.

/xmlhttp.asp, line 26
manca il componente, la dll?
codice:
<%
Dim iMsg
Dim iConf
Dim Flds

set iMsg = CreateObject("CDO.Message")
set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
Flds("http://schemas.microsoft.com/cdo/configuration/urlgetlatestversion") = True
Flds.Update

With iMsg

Set .Configuration = iConf


Dim objXMLHTTP 
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
 objXMLHTTP.Open "GET", "http://bruno.asp", false
 
 .To = "pop@aruba.it"
 .From = "pop@aruba.it"
 .Subject = "Invio locali della settimana di MP"
 
 objXMLHTTP.SetRequestHeader "Content-type", "text/html" 
 objXMLHTTP.Send 
objCDOMail.Body = objXMLHTTP.ResponseText
End with
%>
:master: