Generate CSV file from Printer Friendly/History XSL Views
Summary
Need to generate a CSV file instead of XSL file from Printer Friendly/History XSL ViewsContent
Need to generate a CSV file instead of XSL file from Printer Friendly/History XSL Views
Code attached generates XSL file
Need to generate CSV file
Version
19CCode Snippet
<xsl:stylesheet xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="urn:my-scripts" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" version="1.0"> <xsl:output method="xml" encoding="utf-8" indent="yes" /> <xsl:template match="/"> <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40"> <Styles> <Style ss:ID="mainheader"> <Font ss:Size="12" ss:Bold="1" />
0