PowerPoint and Asp.net  
Author Message
maalik





PostPosted: Sat Jun 09 08:45:02 CDT 2007 Top

ASP.Net >> PowerPoint and Asp.net

Hi,
How to generate a powerpoint document using asp.net ?
The best would be to merge a ppt template with datas that I generate

Thanks for your help.
Stan

Web Programming221  
 
 
Alexey





PostPosted: Sat Jun 09 08:45:02 CDT 2007 Top

ASP.Net >> PowerPoint and Asp.net
> Hi,
> How to generate a powerpoint document using asp.net ?
> The best would be to merge a ppt template with datas that I generate
>
> Thanks for your help.
> Stan

This can help you to start, I guess

http://support.microsoft.com/kb/303717/
http://support.microsoft.com/kb/303718/

For PowerPoint 2007 you would need to look into Office Open XML file
format

 
 
Mark





PostPosted: Sat Jun 09 08:59:40 CDT 2007 Top

ASP.Net >> PowerPoint and Asp.net



>> Hi,
>> How to generate a powerpoint document using asp.net ?
>> The best would be to merge a ppt template with datas that I generate
>>
>> Thanks for your help.
>> Stan
>
> This can help you to start, I guess
>
> http://support.microsoft.com/kb/303717/
> http://support.microsoft.com/kb/303718/

These links demonstrate Office Automation. Microsoft does not support
server-side Office Automation because it doesn't work:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;q257757#kb2

Please don't advise people to use it...


--
http://www.markrae.net

 
 
Mark





PostPosted: Sat Jun 09 09:01:00 CDT 2007 Top

ASP.Net >> PowerPoint and Asp.net


> How to generate a powerpoint document using asp.net ?
> The best would be to merge a ppt template with datas that I generate

http://www.aspose.com/Products/Aspose.Slides/Default.aspx

Don't even consider using server-side Office automation - Microsoft don't
support it because it doesn't work:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;q257757#kb2


--
http://www.markrae.net

 
 
Alexey





PostPosted: Sat Jun 09 09:30:21 CDT 2007 Top

ASP.Net >> PowerPoint and Asp.net

>

>

> >> Hi,
> >> How to generate a powerpoint document using asp.net ?
> >> The best would be to merge a ppt template with datas that I generate
>
> >> Thanks for your help.
> >> Stan
>
> > This can help you to start, I guess
>
> >http://support.microsoft.com/kb/303717/
> >http://support.microsoft.com/kb/303718/
>
> These links demonstrate Office Automation. Microsoft does not support
> server-side Office Automation because it doesn't work:http://support.microsoft.com/default.aspx?scid=kb;EN-US;q257757#kb2
>
> Please don't advise people to use it...
>
> --http://www.markrae.net

It's true, they do not recommend and do not support server-side Office
Automation, however as far as I can see in other threads, Automation
works in a certain conditions. For example, it doesn't work under
default ASP.NET account and has to be run under fixed account from the
local Administrators group, which is again, not recommended by
Microsoft.

 
 
Mark





PostPosted: Sat Jun 09 09:36:42 CDT 2007 Top

ASP.Net >> PowerPoint and Asp.net


> It's true, they do not recommend and do not support server-side Office
> Automation, however as far as I can see in other threads, Automation
> works in a certain conditions. For example, it doesn't work under
> default ASP.NET account and has to be run under fixed account from the
> local Administrators group, which is again, not recommended by
> Microsoft.

Even more of a reason not to recommend it:
http://support.microsoft.com/default.aspx/kb/288367

Note specifically:

Caution Automation of any Office application from an unattended,
non-interactive user account is risky and unstable. A single error in code
or configuration can result in a dialog box that can cause the client
process to stop responding (hang), that can corrupt data, or that can even
crash the calling process (which could bring down your Web server if the
client is ASP).

Warning Office was not designed, and is not safe, for unattended execution
on a server. Developers who use Office in this manner do so at their own
risk.


--
http://www.markrae.net

 
 
Steve





PostPosted: Sun Jun 10 05:09:24 CDT 2007 Top

ASP.Net >> PowerPoint and Asp.net If your needs are simple you may be able to use my free ExportPanel control:
http://SteveOrr.net/articles/ExportPanel.aspx

If your needs are more complex then you probably want to use a 3rd party
tool to help ease things along:
http://SteveOrr.net/reviews/AsposePowerPoint.aspx

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net






> Hi,
> How to generate a powerpoint document using asp.net ?
> The best would be to merge a ppt template with datas that I generate
> Thanks for your help.
> Stan