|
Syntax requirements for integrating XSL into ASP and HTML
Since an XSL stylesheet is an XML document itself, its markup must conform to
XML grammar rules. Most notably, you must ensure that you close all tags.
Since HTML is considerably more forgiving in this regard, make sure that the markup
in XSL sheets will successfully parse. For example, to use <BR> to express a line
break, you must enter <BR/> instead. To read more about the W3's
recommendation for XHTML, which addresses this issue, see
http://www.w3.org/TR/xhtml1/

|