Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Show HTML Source Code without Being Interpreted by Browsers
How can I show HTML examples without them being interpreted as part of my document?
✍: FYIcenter
Within the HTML example, first replace the "&" character with
"&" everywhere it occurs.
Then replace the "<" character with "<" and the ">"
character with ">" in the same way.
Note that it may be appropriate to use the CODE and/or PRE elements
when displaying HTML examples.
2007-03-03, 8736👍, 0💬
Popular Posts:
Can Java object be locked down for exclusive use by a given thread? Yes. You can lock an object by p...
What is the significance of Finalize method in .NET? .NET Garbage collector does almost all clean up...
Managed Code and Unmanaged Code related ASP.NET - How do you hide Public .NET Classes and other publ...
What is cross page posting? By default, button controls in ASP.NET pages post back to the same page ...
What is V model in testing? V model map’s the type of test to the stage of development in a project....