Showing presentation file as Slide Show

Hi,

I am developing application that generates the presentation file, all things are going good and fine using aspose tools, but one thing i provided a button when clicks, it should be shown as slide show(PPS file) for preview and should not prompt with dialog box open, save and cancel. Finally, if it's all ok, then presentation file(PPT file) want to save. So, if anybody knows how to resolve this, plz revert me back at raghuveergupta@gmail.com. I will be thank full very much if any provides.

Raghu Veer Gupta.

Hello,

Do you mean ASP.NET application?

You can try to set Content-Disposition header parameter to “inline”:

this.Response.ContentType = “application/vnd.ms-powerpoint”;
this.Response.AppendHeader(“Content-Disposition”, “inline; filename=slideshow.pps”);

In this case SlideShow should be played directly in browser window.

Hi,

Thank you for response. I used your code, but it does not working. So, please have a look on it.

Regards

Raghu

Hi,

I solved it by replacing "inline" with "attachment" and it's finally works, but here i want to open the slide show file(PPS) directly without prompting the dialog box such as Open, Save and Canel. How to over come this one.

Regards

Raghu Veer Gupta.