I am using XslCompiledTransform() to convert an XML file to HTML. Is there a way I can prevent it from using short tags. e.g.,
<span></span> <!-- I want this even if content empty -->
<span/> <!-- stop doing this! ->
The short closing tags on span's are messign up my document no matter which browswer I use, though it is valid XML, it's just that 'span' is not allowed to have short tags.
Is there a setting I can put in my xsl, or in my C#.Net code to prevent short tags from being used?
Thanks, ~S