DISABLE OUTPUTING - Use this when HTML Code is Showing rather than the Content when writing a Macro

Issue:  I am trying to write out an Image and some text from Content in a Macro, but hte HTML is showing


DO THIS:
<xsl:variable name="getimg" select="$currentPage/caseStudyImage"/>
  <div id="casestudyimg1">
   <xsl:value-of select="$getimg" disable-output-escaping="yes"/>
  </div>

INSTEAD OF THIS:


<xsl:variable name="getimg" select="$currentPage/caseStudyImage"/>
  <div id="casestudyimg1">
   <xsl:value-of select="$getimg" />
  </div>

Comments

Popular posts from this blog

Umbraco Razor Sort Nodes Ascending or Descending

Umbraco Razor get Querystring

Create a .NET Contact Form that Gets the Last Url Visited in C# Can also be Used in Umbraco