Code to show ppt presentation as slide show

Please help me in programming using aspose.slides to show ppt presentation as slide show on buttonclick event in grid

Hi,

Thanks for your interest in Aspose.Slides.

I have tried to understand your problem statement and based on my understanding, please use the following code snippet for slide show.

Presentation pres = new Presentation(@“d:\pptx\Demo.ppt”);
pres.Save(@“d:\pptx\out.pps”, Aspose.Slides.Export.SaveFormat.Pps);
Process pr = new Process();
try
{
pr.StartInfo.FileName = @“d:\pptx\out.pps”;
pr.Start();
pr.WaitForExit();
}
catch (Exception ex)
{
}
Please let me know, If you have any further queries.

Thanks a lot for your response but I want to show ppt slide show on browser using asp.net.
i want it to display in particular space of my application like iframe in my page.
please let me know the solution.
Thanks.

Hi,

I regret to share with you that Aspose.Slides does not provide this feature.