mi dice " Proprietà o metodo non supportati dall'oggetto: 'parseError' "codice:<% Response.Buffer = True Dim xml ' Create an xmlhttp object: Set xml = Server.CreateObject("Microsoft.XMLHTTP") ' Or, for version 3.0 of XMLHTTP, use: 'Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP") ' Opens the connection to the remote server. xml.Open "GET", "http://www.sito.it/pagina.php?var=10", False ' Actually Sends the request and returns the data: xml.Send If xml.parseError.number <> 0 Then Response.Write "Error: " & xml.parseError.URL & _ " " & xml.parseError.Reason Else Response.Write xml.ResponseText End If %>

Rispondi quotando