Another great way to parse the HTML is using the HTML Agility Pack (http://htmlagilitypack.codeplex.com/) It let's you walk the dom, query nodes just like you would with xml, and should really help you search
in an organized way.
Don't forget to mark useful responses as Answer if they helped you towards a solution.
i'm new to all the html and xml parseing, do you think you have an example of how to use it?
what i'm looking for in the web page? (the html element in it) an othe things that can help me
shaytola
Member
2 Points
8 Posts
find RSS in web sites (not a reader)
Apr 03, 2012 02:13 PM|LINK
hi all
i want to create a simple web that all it do is i enter him a URL address and i get back all the RSS feeds that are exist in this web
i have found this code : http://www.codeproject.com/Articles/20001/A-class-for-getting-the-RSS-feed-list-of-a-website
but this dosen't do the job because i want to enter the home URL (and not the main RSS address )
for example : i enter this url "http://www.nba.com/" and i get back all the list of rss from this page : http://www.nba.com/rss/
it this possible? thanks you all for you help!
Shankar_ss
Participant
1270 Points
279 Posts
Re: find RSS in web sites (not a reader)
Apr 05, 2012 02:52 PM|LINK
It is possible. You have to parse the html page and check for desired links & get them out.
You can use asp.net xml parsing for it. Please check the following link:
http://msdn.microsoft.com/en-us/library/bb552908(v=vs.85).aspx
and an example here:
http://www.codeproject.com/Articles/13769/HTML-Parser
Hope this helps.
Shankar
shaytola
Member
2 Points
8 Posts
Re: find RSS in web sites (not a reader)
Apr 08, 2012 06:10 AM|LINK
thanks! i will give it a try
markfitzme
Star
14495 Points
2243 Posts
Re: find RSS in web sites (not a reader)
Apr 08, 2012 03:06 PM|LINK
Another great way to parse the HTML is using the HTML Agility Pack (http://htmlagilitypack.codeplex.com/) It let's you walk the dom, query nodes just like you would with xml, and should really help you search in an organized way.
shaytola
Member
2 Points
8 Posts
Re: find RSS in web sites (not a reader)
Apr 10, 2012 05:49 AM|LINK
hi markfitzme
i'm new to all the html and xml parseing, do you think you have an example of how to use it?
what i'm looking for in the web page? (the html element in it) an othe things that can help me
thanks a lot for your help. shai