I am getting the following error while trying to run my application deployed in IIS. It is working fine in Windows server 2003,but when migrated to Test server 2008,error comes.
Unable to process XSLT (path C:\inetpub\wwwroot\.........\MaintSysApps.xsl): XSLT compile error.
Here is the code in my XSL.
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<xsl:template match="/">
<div id="divDisplay" class="Main">
<xsl:call-template name="CreateTitle" />
<div id="divUserID">Welcome, <xsl:value-of select="//@UserID" />.</div>
<xsl:apply-templates select="//AppSys" />
<xsl:call-template name="Link" />
</div>
</xsl:template>
...
Go to the complete details ...