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:
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, 8476👍, 0💬
Popular Posts:
Can you explain Forms authentication in detail ? In old ASP if you where said to create a login page...
If client side validation is enabled in your Web page, does that mean server side code is not run? W...
In below sample code if we create a object of class2 which constructor will fire first? Public Class...
Where Is the Submitted Form Data Stored? - PHP Script Tips - Processing Web Forms When a user submit...
In which event are the controls fully loaded ? Page_load event guarantees that all controls are full...