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 Generate a Feed id Element
How To Generate a Feed id Element? - RSS FAQs - Atom Feed File Structure and Elements
✍: FYIcenter.com
The <id> element is a required sub-element of the <feed> element. The Atom specification requires that you provide a universally unique identifier for each of your feeds. So how to make this identifier universally unique?
One strategy is to use the URL where the feed document is located. For example, if your Atom feed document is located at: http://dev.fyicenter.com/atom.xml, you use the following id element in this feed document:
<id>http://dev.fyicenter.com/atom.xml</id>
2007-05-12, 5366👍, 0💬
Popular Posts:
How To Use Subqueries with the IN Operator? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqu...
Can Java object be locked down for exclusive use by a given thread? Yes. You can lock an object by p...
What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b; void...
What invokes a thread's run() method? After a thread is started, via its start() method of the Threa...
Can JavaScript steal text from your clipboard? It is true, text you last copied for pasting (copy &a...