网页中嵌入pdf 或者 word的办法

 <embed width="280" height="280" src="1.pdf"> </embed> 
上面的代码,经验证pdf可以,但是word就不行了。。。。

如果要想嵌入word。。。。看下面:

Response.ContentType="Application/doc";   
  string   FilePath=MapPath("aaaa.doc");   
  Response.WriteFile(FilePath);   
  Response.End(); 

 不过是asp的代码。那么可以改造为jsp就可以。。。

 另外html的代码:(可以,但是有弹出对话框,选择打开也可以做到同样的效果)

<META NAME="ProgID" CONTENT="word.document">
<META NAME="Template" CONTENT="C:/Program Files/Microsoft Office/Office/html.dot">

<iframe src="E:/aa.doc"></iframe>

你可能感兴趣的:(网页中嵌入pdf 或者 word的办法)