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:
Do I have to know HTML or SGML before I learn XML
Do I have to know HTML or SGML before I learn XML?
✍: FYICENTER.com
No. Although it's useful because a lot of XML terminology and practice derives from two decades' experience of SGML.
Be aware that "knowing HTML" is not the same as "understanding SGML". Although HTML was written as an SGML application, browsers ignore most of it (which is why so many useful things don't work), so just because something is done a certain way in HTML browsers does not mean it's correct, least of all in XML.
2007-04-11, 4926👍, 0💬
Popular Posts:
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
What Is URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and exten...
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...
What is the FP per day in your current company?
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...