how to convert html page to excel using html code
can I do with js
2010-06-22 15:59:32
JavaScript is generally client-side and does and for more than one reason isn't suitable.
Babiker
2010-06-22 16:14:35
+1
A:
HTML is not a programming language, it's a markup language (hence the name). Therefore, it will not be able to convert anything to any other format, including excel.
The easiest way to accomplish what you're looking for would be to convert that HTML page to a comma separated format in some fashion, as many programming languages can parse a CSV format, and Excel can import a CSV file and create a spreadsheet from it.
nearlymonolith
2010-06-22 15:52:24