Ég er að reyna að lesa textaskrá yfir netið en fæ villu.

Hér fyrir neðan er kóðinn:
<%
Dim objOpenFile, objFSO, strPath
strPath = Server.MapPath("http://www.vefurinnminn.is/texti.txt“)
set objFSO = Server.CreateObject(”Scripting.FileSystemObject“)
set objOpenFile = objFSO.OpenTextFile(strPath, 1)

do while not objOpenFile.atendofstream
response.write objOpenFile.readline & ”<br>" & vbCrLf
loop

objOpenFile.Close
set objOpenFile = nothing
set objFSO = nothing
%&gt;

Og svo er hér fyrir neðan villan sem ég fæ:
Error Type:
Microsoft VBScript runtime (0x800A004C)
Path not found
/test/index.asp, line 6


Ef einhver kann ráð við þessu þá væri það vel þegið.