Suppose stackoverflow.com wanted to have an RSS feed for each tag . They will probably have requests like stackoverflow.com/rss?tag=aspnet to return the corresponding RSS feeds. This is the easy part.
Now that the user has requested stackoverflow.com/rss?tag=aspnet, he will see some XML. Instead, it would be better to show a page where the user can choose which RSS reader they want to subscribe to (for example, feedburner.com).
My question is: is there any ready-made code (html + javascript) that I can copy-paste to create such a subscription page? Basically I want to copy feedburner.com's subscription page to my own site.
PS - I would be happy to use feedburner.com, but I would need to create a feed for each tag manually, which is impractical.
source
share