Hi eric,
Thanks for the info. For
testing purpose, we created an html table in a text file and named it as test.xls, I wrote a function which has only one line
window.open('test.xls','','resizable=yes,height=475,width=800');
When I call this function from the context menu item, its perfectly showing the excel speadsheet.
I have one more question. In Javascript, we cannot do file reading or writing. So, we have to send the table data to server and let server convert the data into an xls file, and when we receive it, we can show it in excel. How do we send the whole table data to the server?
And in Import from Excel, we will get the file name from the dialog. How do we send the file contents to server, so it can send us the xls file data to a simple html table?
Thanks.