在网页中嵌入播放器,PDF,Word,Excel,PPT的方法
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
在网页中嵌入播放器,PDF,Word,Excel,PPT的方法
在HTML加入Object或者Embed标签
禁掉工具栏
在生成pdf的时候选择 hide toolbar 并限制reader的版本必须是6.0以上 就可以了
WORD文档嵌入到网页
用IFrame。如果想随意定位,可以用div来包容一个IFrame
打开frontpage选择插入ActiveX控件的word/excel就可以了
直接用IE以浏览器的形式显示word文档
Convert Word Document to HTML using C#,
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, Word.WdSaveFormat.wdFormatFilteredHTML});
*/
///其它格式:
///wdFormatHTML
///wdFormatDocument
///wdFormatDOSText
///wdFormatDOSTextLineBreaks
///wdFormatEncodedText
///wdFormatRTF
///wdFormatTemplate
///wdFormatText
///wdFormatTextLineBreaks
///wdFormatUnicodeText
docType.InvokeMember("SaveAs", System.Reflection.BindingFlags.InvokeMethod,
null, doc, new object[]{saveFileName, Word.WdSaveFormat.wdFormatHTML});
//退出 Word
w
ordType.InvokeMember("Quit", System.Reflection.BindingFlags.InvokeMethod,
null, word, null);
string newFileName = FileName.Replace(".doc",".htm");
return(newFileName);
}
在HTML中嵌入Media Player
把宽度和高度加到object标签中,如下。