Hello,
I need to get from page http://www.teo.lt/ltforms/inc_count.php this 3 numbers.
I need to do this withasp (with vb script).
I have this type of script
but i have this type of error :
msxml3.dll error '80072efd'
A connection with the server could not be established
/test.asp, line 9
can anybody help me? I am on proxy, maybe this? How can i do that get this numbers to vb string?
I need to get from page http://www.teo.lt/ltforms/inc_count.php this 3 numbers.
I need to do this withasp (with vb script).
I have this type of script
Code:
<% url = "http://www.teo.lt/ltforms/inc_count.php" ' add a BASE HREF tag Response.write "<BASE HREF='" & url & "'>" set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP") xmlhttp.open "GET", url, false xmlhttp.send "" Response.write xmlhttp.responseText set xmlhttp = nothing %> <html> <head> <title>heloo</title> </head> <body> dfasdf </body> </html>
msxml3.dll error '80072efd'
A connection with the server could not be established
/test.asp, line 9
can anybody help me? I am on proxy, maybe this? How can i do that get this numbers to vb string?
Comment