I have an XSLT transform issue:
style="width:{Data/PercentSpaceUsed}%;"
And the value of Data/PercentSpaceUsed is integer 3.
And it outputs:
style="width:
 3
 %;"
instead of what I expected:
style="width:3%;"
Here's the code that does the transform: xslt_xslt
is the transform xml, sw.ToString()
contains the 
and 

which I did not expect.
var xslTransObj = new XslCompiledTransform();
var reader = new XmlTextReader(new StringReader(xslt_xslt));
xslTransObj.Load(reader);
var sw = new StringWriter();
var writer = new XmlTextWriter(sw);
xslTransObj.Transform(new XmlTextReader(new StringReader(xslt_data)), writer);
ResultLiteral.Text = sw.ToString();
The


are carriage returns and line feeds either within your XML or your XSLT. Make sure the xml is likeRather than
I believe there is a way to stop whitespace being used within your transformation although I don`t know it off the top of my head.
try
for input whitespace to be preserved on output for attribute values.
note: with above settings, tabs are used for indentation
You're getting whitespace from the source document. Use
to strip out the whitespace. The other option in your case would be to use