Credit Report - Loans - Advertising - Baton Rouge Apartments - Fast Loans

PDA

View Full Version : Microsoft VBScript runtime error '800a01b6' ??


stephen101
Jun 7th 2007, 2:02 am
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

krakjoe
Jun 7th 2007, 2:07 am
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.

stephen101
Jun 7th 2007, 2:20 am
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
%>

krakjoe
Jun 7th 2007, 2:35 am
Can I getta link to the live page ??

stephen101
Jun 7th 2007, 2:52 am
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

krakjoe
Jun 7th 2007, 2:55 am
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.......

stephen101
Jun 7th 2007, 3:03 am
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.