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:
What Is the Structure of Atom Feed Documents
What Is the Structure of Atom Feed Documents? - RSS FAQs - Atom Feed File Structure and Elements
✍: FYIcenter.com
An Atom feed document must have a root element called "feed". Within in the "feed" element, one or more "entry" elements are enclosed. The high level structure of an Atom feed document looks like:
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> (other feed sub-elements) <entry> ... </entry> <entry> ... </entry> (more entry elements) </feed>
2007-05-12, 5679👍, 0💬
Popular Posts:
What is NullPointerException and how to handle it? When an object is not initialized, the default va...
How do you pass control from one JSP page to another? Use the following ways to pass control of a re...
How To Export Data to a CSV File? - Oracle DBA FAQ - Introduction to Oracle SQL Developer If you wan...
How To Create an Add-to-Netvibes Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News ...
How To Give a User Read-Only Access to a Database? - MySQL FAQs - Managing User Accounts and Access ...