I have an application that was originally working fine with asp.net 1.1 and DotNet exslt library. Output from the xslt is xhtml.
I am converting it to asp.net 2.0 (with compiled xslt) with Mvp exslt library. I am totally at a loss as to how to produce valid output. i.e I need to output elements such <br /> but images must be <img src="..."></img>.
Just how do I achieve this? Using xsl:output method="xml" causes all empty elements to be output in shorthand form. Using xsl:output method="html" cures that problem, but many elements are output in html syntax (e.g. <br>).
I don't know if problem is with Mvp module or my use of new .net 2.0 xslt classes!
John Walton