I am continuing from my previous question I need a way to export my json string into a xls
or csv
file that can be opened in MS Excel (I am using simple html and jsp).
So far I found this link that made me open a excel using
var xls = new ActiveXObject("Excel.Application");
xls.visible = true;
Any type of suggestions is welcome. Thankyou