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