konika
konika

Reputation: 3

How to find that website is using feeds or not?

Is there any way I could check that,given site(any) is using feeds or not,I'd seen www.bbc.co.uk is using feeds.I am using c# asp.net 2010.

Upvotes: 1

Views: 254

Answers (1)

Nasreddine
Nasreddine

Reputation: 37808

You can check for this tag in the head section (this is for an atom feed):

<link rel="alternate" type="application/atom+xml" href="link/address/" >

For example BBC makes it known that they have a feed using this (they have an RSS feed):

<link href="http://feeds.bbci.co.uk/news/rss.xml" rel="alternate" type="application/rss+xml" title="BBC News - Home" />

Upvotes: 2

Related Questions