Microsoft VBScript runtime error '800a01b6' ??

Discussion in 'Programming' started by stephen101, Jun 7, 2007.

  1. #1
    Hi

    Can anybody tell me how I can go about being able to view an "asp" file when uploaded to my server.I get this message

    Microsoft VBScript runtime error '800a01b6'

    Object doesn't support this property or method

    /index.asp, line 4


    Thanks
     
    stephen101, Jun 7, 2007 IP
  2. krakjoe

    krakjoe Well-Known Member

    Messages:
    1,795
    Likes Received:
    141
    Best Answers:
    0
    Trophy Points:
    135
    #2
    what is line four ??

    The error means you have tried to call a non-existent method or you tried to call a global method on something that doesn't support it.
     
    krakjoe, Jun 7, 2007 IP
  3. stephen101

    stephen101 Guest

    Messages:
    146
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    This is the code


    <%
    Dim objXmlHttp
    Dim strHTML
    objXmlHttp = Server.CreateObject("MSXML2.ServerXMLHTTP")
    objXmlHttp.open "GET", "http://telalinks.com/system/get.cgi?u=diallo45&id=19320&c=53&this=" & Request("this"), False
    objXmlHttp.send
    strHTML = objXmlHttp.responseText
    Response.Write(strHTML)
    objXmlHttp = Nothing
    %>
     
    stephen101, Jun 7, 2007 IP
  4. krakjoe

    krakjoe Well-Known Member

    Messages:
    1,795
    Likes Received:
    141
    Best Answers:
    0
    Trophy Points:
    135
    #4
    Can I getta link to the live page ??
     
    krakjoe, Jun 7, 2007 IP
  5. stephen101

    stephen101 Guest

    Messages:
    146
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Hi I have been messing a little with the server so the message does not appear at the moment - will post the live link when it appears.But can you not derive a solution from the given coding above on line 4.

    Thanks
     
    stephen101, Jun 7, 2007 IP
  6. krakjoe

    krakjoe Well-Known Member

    Messages:
    1,795
    Likes Received:
    141
    Best Answers:
    0
    Trophy Points:
    135
    #6
    Well I always thought that you can't make requests across domain with msxml or xmlhttp, but I'd like to see the error firefox gives from the real page.......
     
    krakjoe, Jun 7, 2007 IP
  7. stephen101

    stephen101 Guest

    Messages:
    146
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Well Here is the link:

    http://www.seodeluxe.info/index.asp

    In FireFox browser it appears now to show the coding, but before it had the whole error message stated above in both firefox browser and internet explorer.I have just loaded the file back on within the last 30 minutes after deleting it.
     
    stephen101, Jun 7, 2007 IP