asp.net word excel

  • Thread starter Thread starter selen
  • Start date Start date
S

selen

I want to open Microsoft word, excel and PowerPoint with asp.net and save
it. How can I do that?

Thanks.........
 
selen said:
I want to open Microsoft word, excel and PowerPoint with asp.net and save
it. How can I do that?

Thanks.........

Hi -

I don't know about ASP.NET specifically but for C# examples using Word &
Excel, see:

<FrameworkSDK>\Samples\Technologies\Interop\Applications\Office

Good luck.
 
Note that doing this on a webserver is risky, as Excel and Word are not
designed to be called from multiple threads (as a web application will do).
You'll probably run into performance problems as well.

If you're trying to generate these on the fly, you may want to try some
third-party solutions that create Word or Excel format files. If everyone
in your target audience is using Office 2003, you may even try generating
WordML as well.
 
Back
Top