Microsoft VBScript runtime error '800a01b6'

Discussion in 'C#' 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

    <%
    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
    %>



    Thanks
     
    stephen101, Jun 7, 2007 IP
  2. ccoonen

    ccoonen Well-Known Member

    Messages:
    1,606
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    160
    #2
    I think your issue is the request.

    Maybe you mean Request("this") to be Request.QueryString("this") ?

    First do a response.write "http://telalinks.com/system/get.cgi?u=diallo45&id=19320&c=53&this=" & Request("this") and see if it outputs what you want.
     
    ccoonen, Jun 8, 2007 IP
  3. kashif.nazar

    kashif.nazar Peon

    Messages:
    52
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    kashif.nazar, Jun 11, 2007 IP