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 CDATA
What Is CDATA? - XHTML Tutorials - Introduction To Element Content Syntax
✍: FYIcenter.com
CDATA stands for Character DATA, which is used to define a section of data that should not go through the XHTML entity translation (parsing) process. In other words, 3 special characters: "<", ">", and "&" can be directly used in CDATA. They will not be "parsed".
CDATA must starts with "<![CDATA[" and ends with "]]>". Here are some good examples:
<![CDATA[Adam & Eve]]>
<![CDATA[
Sample XHTML code:
<p>1</p>
<p>1 1</p>
<p>1 2 1</p>
<p>1 3 3 1</p>
<p>1 4 6 4 1</p>
]]>
2007-05-12, 4883👍, 0💬
Popular Posts:
How do you target a specific frame from a hyperlink? Include the name of the frame in the target att...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
What is a delegate ? Delegate is a class that can hold a reference to a method or a function. Delega...
1. The basics first, please define the web in simple language? How is it connected with internet? Wh...