Jag gjorde så här:
<%Function Aftonbladet(n)
sFind = "<br clear=""all"">"
Set objHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objHTTP.Open "GET", "http://www.aftonbladet.se/vss/telegram/0,1082,_852__o,00.html", False
objHTTP.Send
str = objHTTP.responseText
Set objHTTP = Nothing
str = Right(str,Len(str)-InStr(str,sFind)+1-len(sFind))
str = Left(str,InStr(str,"<div align=""right"">")-1)
a=split(str,"<br>")
for i = 0 to Ubound(a)
if i = n then
exit for
end if
a(i) = Replace(a(i),"Alla nyheter på en sida","")
a(i) = Replace(a(i),"<table width=""375"" cellpadding=""0"" cellspacing=""0"" border=""0"">","")
a(i) = Replace(a(i),"<tr>","")
a(i) = Replace(a(i),"<td bgcolor=""#000000"" ><font class=""vitfet""> sverige</font></td>","")
a(i) = Replace(a(i),"</tr>","")
a(i) = Replace(a(i),"<tr>","")
a(i) = Replace(a(i),"<td height=""5""><img src=""/vinj/bas/trans1x1.gif"" width=""1"" height=""1"" alt="""" border=""0""></td>","")
a(i) = Replace(a(i),"</tr>","")
a(i) = Replace(a(i),"</table>","")
a(i) = Replace(a(i),"<img src=""/vinj/bas/pil.gif"" width=""7"" height=""9"" border=""0"">","")
a(i) = Replace(a(i),"<a href=""","<a class=""vit"" target=""_blank"" href=""http://www.aftonbladet.se")
myStr=myStr+a(i)+"<br>"
next
Aftonbladet = myStr
End Function
Function DN(n)
sFind = "<!-- SORTERING STOP -->"
Set objHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objHTTP.Open "GET", "http://www.dn.se/DNet/jsp/polopoly.jsp?d=591&dnIdShuttle=592", False
objHTTP.Send
str = objHTTP.responseText
Set objHTTP = Nothing
str = Right(str,Len(str)-InStr(str,sFind)+1-len(sFind))
str = Left(str,InStr(str,"<!-- dv:")-1)
a=split(str,"<br>")
for i = 0 to Ubound(a)
if i = n then
exit for
end if
a(i) = Replace(a(i),"<font color=""#B7002E"">","<font color=""#ffffff""><b>")
a(i) = Replace(a(i),"bgcolor=""#CC0033""","")
a(i) = Replace(a(i),"<td width=""10"">• </td>","")
a(i) = Replace(a(i),"<a target=""_top"" href=""","<a class=""vit"" target=""_blank"" href=""http://www.dn.se")
myStr=myStr+a(i)+"<br>"
next
DN = myStr
End Function%>
<%=Aftonbladet(100)%>
<br>
<%=DN(100)%>
100 är antal nyheter som ska visas.