I know that WebMathmatica has examples do export to PDF (in link form and as direct download).
We can see it in content and contect store examples.
Here is the code for PDF:
<msp:evaluate>
nb = MakeNotebook[];
pdf = UseFrontEnd[ ExportString[ nb, "PDF"]];
MSPURLStore[ pdf, "application/pdf", "notebook.pdf"]
</msp:evaluate>
I would like to know how can I do the same for Excel XLSX files;
For example, if I have this list:
list = RandomInteger[100, {20, 5}]
How can I export list as an Excel file using WebMathematica?
tks in advance