Dear Sirs,
I have following asp file to read a text file from other url.. (as it is)
<%Option Explicit %>
<!-- #include file="adovbs.inc" -->
<%
Dim objStream, objRecord, strText
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open "URL=http://www.xxx.com/deme.txt", adModeRead,
adOpenStreamFromURL
strText = objStream.ReadText
Response.Write strText
objStream.Close
%>
Error Type:
Microsoft VBScript runtime (0x800A01F4)
Variable is undefined: 'adOpenStreamFromURL'
/i/imkb/deneme.asp, line 10