Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an Xml transformation I need to do, but am having a bit of a struggle.

The input Xml looks like this...

<?xml version='1.0' encoding='utf-8' ?>
<content>
     <div>Stuff Goes Here</div>
</content>

And the stylesheet looks like this...

<?xml version='1.0' encoding='utf-8'?><xsl:stylesheet version='1.0'      xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:msxsl='urn:schemas-microsoft-com:xslt'  exclude-result-prefixes='msxsl'>

<xsl:output method='html' />
     <xsl:template match='/'>
          <xsl:value-of select='content' disable-output-escaping='yes'   />
     </xsl:template>
</xsl:stylesheet>

I have got the transform working with c#, but it only returns "Stuff Goes Here" without the wrapping div tag.

share|improve this question
What is your expected output? Is it be "<div>Stuff Goes Here</div>", as opposed to just "Stuff Goes Here"? – Chris B. Behrens Aug 19 '11 at 16:03
Yes, it should be <div>Stuff Goes Here</div> – jcreamer898 Aug 19 '11 at 16:10

1 Answer

up vote 3 down vote accepted

Try this

<xsl:output method='html' />
<xsl:template match='/'>
    <xsl:copy-of select='content/div'/>
</xsl:template>
</xsl:stylesheet>

Outputs

<div>Stuff here</div>

Good Luck

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.