Link to home
Start Free TrialLog in
Avatar of snensi
snensi

asked on

Page Cannot be displayed due to msxml3.dll (0x800C0005)

My Code which used to work all along for years has recently been acting up
<%
    option explicit
   
    Dim RefPage, objXMLHTTP, HTMLPage
    RefPage = Request.QueryString("ref")
    if Len(RefPage) = 0 or not Left(RefPage,7) = "http://" then
          response.write "<font face=verdana size=2>Invalid reference page - " & RefPage & "</font>"
          response.end
    end if
    Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
          objXMLHTTP.Open "GET", RefPage, False
          objXMLHTTP.Send
          HTMLPage = objXMLHTTP.responseText
    Set objXMLHTTP = Nothing
    %>

What I am trying to do here is just merely grab TEXT from my own webpage and display as TEXT for Printing purposes only/


Error Type:
msxml3.dll (0x800C0005)
The system cannot locate the resource specified.

I have searched Google... and found very few similar comments, but hardly any solution. I also know that similar query was done here but not with the same server screenscraping issue.

thks
Sal
ASKER CERTIFIED SOLUTION
Avatar of lengreen
lengreen

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of masirof
masirof

No comment has been added to this question in more than 21 days, so it is now classified as abandoned..
I will leave the following recommendation for this question in the Cleanup topic area:
Split: lengreen & SquareHead

Any objections should be posted here in the next 4 days. After that time, the question will be closed.

masirof
EE Cleanup Volunteer