I am running some reports with C#. After I running them I need to running them through a xslt stylesheet. There are multiple files everytime I run it. Is there a way to edit the xslt stylesheet with C#? It would be for the param "uri" select attr.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0">
<xsl:param name="identifier"/>
<xsl:param name="uri" select="'file:///D:/XSLT/file.csv'"/>
<xsl:template match"/">
.........
</xsl:template>
</xsl:stylesheet>