Hello,
I am trying to get a component working using XslControl in component in a .Net environment. But figured this control is missing in the web.config. Can someone plese help me find the maping ascx for this so that I can add it to the web.config.
LiveSite 7.4.1
.Net runtime
This is what I am trying. I got this from the sitedeveloper guide.
<autn:XslControl ID="comp1" runat="server"
ComponentId="$CONTEXT{componentId}">
<Xsl>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/
XSL/Transform">
<xsl:include href="http://www.interwoven.com/livesite/xsl/
HTMLTemplates.xsl"/>
<xsl:include href="http://www.interwoven.com/livesite/xsl/
StringTemplates.xsl"/>
<xsl:template match="/">
<xsl:value-of select="//Title"/>
</xsl:template>
</xsl:stylesheet>
</Xsl>
</autn:XslControl>