在网页中嵌入播放器,PDF,Word,Excel,PPT的方法.docVIP

  • 28
  • 0
  • 约6.62千字
  • 约 7页
  • 2018-01-01 发布于河南
  • 举报

在网页中嵌入播放器,PDF,Word,Excel,PPT的方法.doc

在网页中嵌入播放器,PDF,Word,Excel,PPT的方法

在网页中嵌入播放器,PDF,Word,Excel,PPT的方法 在网页中嵌入播放器,PDF,Word,Excel,PPT的方法 在HTML加入Object或者Embed标签 object classid=clsid:CA8A9780-280D-11CF-A24D-444553540000 width=760 height=411 border=0 param name=_Version value=65539 param name=_ExtentX value=20108 param name=_ExtentY value=10866 param name=_StockProps value=0 param name=SRC value=aa.pdf /object embed id=e src=test.pdf width=400 height=300 type=application/pdf/ 禁掉工具栏 在生成pdf的时候选择 hide toolbar 并限制reader的版本必须是6.0以上 就可以了 head style !-- .eng { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px} -- /style /head table border=0 td p style=margin-top: -27px; margin-bottom: 0 object classid=clsid:CA8A9780-280D-11CF-A24D-444553540000 id=Pdf1 width=730 height=606 param name=_Version value=327680 param name=_ExtentX value=19315 param name=_ExtentY value=16034 param name=_StockProps value=0 param name=SRC value=/1.pdf /object /td /tr /table noscriptiframe src=*.html/iframe/noscript WORD文档嵌入到网页 meta http-equiv=Content-Type content=application/msword;charset=gb2312/ 用IFrame。如果想随意定位,可以用div来包容一个IFrame 打开frontpage选择插入ActiveX控件的word/excel就可以了 直接用IE以浏览器的形式显示word文档 Convert Word Document to HTML using C#,ASP.Net private string Get_Html(string FileName) { //FileName绝对路径 Word.ApplicationClass word = new Word.ApplicationClass(); Type wordType = word.GetType(); Word.Documents docs = word.Documents; //打开文件 Type docsType = docs.GetType(); string newFileNamePath = this.Server.MapPath(FileName); Word.Document doc = (Word.Document)docsType.InvokeMember(Open, System.Reflection.BindingFlags.InvokeMethod, null, docs, new Object[]{newFileNamePath, true, true}); //转换格式,另存为 Type docType = doc.GetType(); object saveFileName = newFileNamePath.Replace(.doc,.htm); //下面是Microsoft Word 9 Objec Library的写法,如果是10,可能写成: /* docType.InvokeMember(SaveAs, System.Reflection.BindingFlags.InvokeMethod, null, doc, new object[]{saveFileName, Wor

文档评论(0)

1亿VIP精品文档

相关文档