Hier is de code om de headlines van nu.nl in ASP te parsen.
Hij haalt hier alleen het hoofdnieuws uit, maar is makkelijk aan te passen
<%
If request.querystring("t") <> "" Then
target = Request.QueryString("t")
Else target = "blank"
End If
set xmlhttp=createobject("MSXML2.XMLHTTP")
call xmlhttp.Open("POST", "http://nu.nl/deeplink_xml", false)
call xmlhttp.Send("dummy")
content=xmlhttp.responseText
strFirst = Instr( content, "<section name=""nieuws.hoofd"">" )+29
strLast = InStr( content, "</section>" )-0
content = Mid( content, strFirst, strLast-strFirst )
content = Replace(content, "<nu>", "")
content = Replace(content, "</nu>", "")
content = Replace(content, "<document href=", "<a href=")
content = Replace(content, "</document>", "</a> | ")
content = Replace(content, """>", """ target=""_"&target&""">")
content = Replace(content, "> ", ">")
content = Replace(content, " </a>", "</a>")
content = Replace(content, "http://nu.nl/document?n", "nieuwsartikel.asp?t=top&artikel")
marquee = "<span class=""Nieuws""><marquee>"&content&" Bron: NU.NL</marquee></span>"
content = Replace(content, "</a> | ", "</a><br>"&chr(13))
lijst = "<span class=""Nieuws"">"&content&"</span>"
%>