How do I read an excel file to display the worksheet on the web.

S

sarunnio

How do I read an excel file to display the worksheet on the web.

Can I make use of some excel automation to programmatically
manipulate the excel file via the web browser.

Thanks in advance.

What I 'd like to do is to create a link like shown below.

-Link1
-Link2
-Link3

If Link1 is clicked. the worksheet #1 of excel file must be shown on web browser.
Then Link2 is clicked. the worksheet #2 of excel file must be shown on web browser.

Could that be possible??
 
M

Mark Rae

How do I read an excel file to display the worksheet on the web.

Can I make use of some excel automation to programmatically
manipulate the excel file via the web browser.

Yes you can, though this approach is not recommended because of the massive
overhead it creates.

A much better solution, though not free, would be to use one of the 3rd
party utilities which can work with MS-Office files without having to
instantiate Office first.

I use this suite: http://www.aspose.com/
 
D

Dennis Myrén

You could use the OLE interface to read the workbook and it's sheets.
That way, you do not need to automate EXCEL and therefore you will not need
to have it installed on the machine from where this would run.
I wrote a component to do that and a web interface where you could load
workbook from an URL and view it's sheets.
 
M

Mark Rae

You could use the OLE interface to read the workbook and it's sheets.
That way, you do not need to automate EXCEL and therefore you will not
need to have it installed on the machine from where this would run.
I wrote a component to do that and a web interface where you could load
workbook from an URL and view it's sheets.

That's interesting... When you say "That way, you do not need to automate
EXCEL and therefore you will not need to have it installed on the machine
from where this would run", are you talking about the client or server?
 
D

Dennis Myrén

That would be the server, or actually neither server nor client, for that
matter.

The workbook is loaded and rendered to HTML.
So all the client will need is a browser.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top