I have an rss feed from an external server. Reading it with classic asp works fine, but I want to delete certain <item>'s from it. I have been trying for days but can't get it to work.
When I get all the <item>'s with xmlDOM.getElementsByTagName("item"), I want to delete all double titles (<title>), because I need to create a list of unique authors (which are in the title). I use a For each to walk through the original collection of items and use a comma seperated string to hold unique titles. When a <title> alreade is in the string, that <item> must be deleted.
I've been trying and trying, but can't find the solution,.. it sounds like it must be real simple.
I tried this:
http://www.devguru.com/Technologies/...moveChild.html
and different combinations,.. it ends up in errors like this Object doesn't support this property or method: 'removeChild'
I use MSXML2.Domdocument.3.0, I tried version 5 and 6, tried Microsoft.XmlDom like in the examples.)
Someone can point me in the right direction?