Reputation: 413
I use Vbscript and i would like to open excel files in browser and not to download them as external files. Is there any possible way to do that? Is it possible with javascript? They could be opened at a new slide over the current window
Upvotes: 0
Views: 629
Reputation: 943564
There are two ways to open an Excel document in a browser.
To do that latter would require an Excel parser. I'm not aware of any existing JavaScript ones, so you would have to find one or write one. Writing one would possibly be easier if you looked at an open source implementation in another language and ported it.
Upvotes: 1