Prøv med det her:
<html>
<head>
<title></title>
</head>
<body bgcolor=\"#C0C0C0\">
<% ReplaceLine = \"<font color=\"\"#993300\"\">\" \' Strengen der skal laves om
ReplaceWith = \"<font color=\"\"#993300\"\" size=\"\"1\"\" face=\"\"arial\"\">\" \' Det strengen skal laves om til
\'FileObject
set myFileObject = Server.CreateObject(\"Scripting.FileSystemObject\")
Set objHTTP = Server.CreateObject(\"AspHTTP.Conn\")
\'Input file
objHTTP.Url = \"
http://www.knr.gl/news/dansk/5.htm\"; \'Output file
objHTTP.saveFileTo = \"c:\\temp\\temp.htm\"
tmpHTMLDoc = objHTTP.GetURL
objHTTP.RequestMethod = \"GET\"
Set objHTTP = Nothing
set fromFile = myFileObject.OpenTextFile(\"c:\\temp\\temp.htm\")
Do While fromFile.AtEndOfStream = False
currentLine = fromFile.ReadLine
If Instr(currentLine, ReplaceLine) Then
Response.Write Replace(currentLine, ReplaceLine, ReplaceWith)
End If
Loop
Set fromFile = Nothing
Set myFileObject = Nothing
%>
</body>