也就是如何把PPT里的页数分页浏览在页面上?

解决方案 »

  1.   

    把PPT另存为HTML看看
    打开HTML为乱码将PPT文档显示在网页上需先添加com中的PowerPint和Microsoft.Office.Core引用// Purpose: Creates a PowerPoint presentation,   
    // adds a slide and two shapes to the slide,   
    // animates the shapes,and runs the slide show.   
    Microsoft.Office.Interop.PowerPoint.Application ppApp = 
    new Microsoft.Office.Interop.PowerPoint.ApplicationClass(); // Open the presentation in the file
    Microsoft.Office.Interop.PowerPoint.Presentation pp = ppApp.Presentations.Open(
    filename,
    Microsoft.Office.Core.MsoTriState.msoTrue,
    Microsoft.Office.Core.MsoTriState.msoFalse,
    Microsoft.Office.Core.MsoTriState.msoFalse);pp.WebPagePreview();