Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Write a Minimum Atom 1.0 Feed File
How To Write a Minimum Atom 1.0 Feed File? - RSS FAQs - Atom Feed Introduction and File Generation
✍: FYIcenter.com
If you want your Website to support a minimum Atom 1.0 feed, you can follow the tutorial exercise bellow.
1. First create a file called "atom.xml" with the following content:
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>Webmaster FYI Center</title> <subtitle>A place to find information for Webmasters </subtitle> <link rel="self" href="http://dev.fyicenter.com/atom.xml"/> <id>http://dev.fyicenter.com/</id> <updated>2005-07-13T18:30:02Z</updated> <author> <name>FYIcenter.com</name> <email>noreply@fyicenter.com</email> </author> <entry> <title>Webmaster FAQ Collection</title> <link href="http://dev.fyicenter.com/faq/"/> <id>http://dev.fyicenter.com/faq/</id> <updated>2005-07-13T18:30:02Z</updated> <summary>A massive collection of FAQs for Webmasters. </summary> </entry> </feed>
2. Relace domain name "fyicenter.com" with your domain name.
3. Upload "atom.xml" to your Website.
4. Your Website supports Atom 1.0 syndication feed now.
2007-05-12, 7314👍, 0💬
Popular Posts:
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritab...
Managed Code and Unmanaged Code related ASP.NET - How do you hide Public .NET Classes and other publ...
How do we generate strong names ? or What is use the of SN.EXE ? or How do we apply strong names to ...
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...
What is AL.EXE and RESGEN.EXE? In the previous question you have seen how we can use resource files ...