Iframe that loads a preview of an office document

I am creating an extranet and files are loaded into it .doc .xls .ppt and are saved on the server in a folder ./ folder / test.doc and in the extranet it is already shown that this file is registered, now the matter is that in an iframe displays only the preview of the document, it does not matter that you can not modify it only that the 'preview' of the document is seen.

 2
Author: Ing. Marquez Adam, 2016-03-04

2 answers

As a complement to answer is possible in addition to MS Office documents, .doc .xls .ppt:

<iframe src="http://docs.google.com/gview?url=http://www.snee.com/xml/xslt/sample.doc&embedded=true" style="width:500px; height:500px;" frameborder="0"></iframe>

It is also possible to upload files PDF:

<iframe src="http://docs.google.com/gview?url=http://fzs.sve-mo.ba/sites/default/files/dokumenti-vijesti/sample.pdf&embedded=true#:0.page.20" width="500" height="500" frameborder="2"></iframe>

As a limitation I would like to mention that documents that are password protected, it is not possible to inject this data into them.

 4
Author: Jorgesys, 2016-03-07 16:06:12

With this simple iframe we will be able to load our documents to view them accepts Word, Excel, PowerPoint and other documents associated with Google Docs.

<iframe src="http://docs.google.com/gview?url=http://upgrade.com.mx/_docs/prueba.doc&embedded=true" style="width:600px; height:500px;" frameborder="0"></iframe>

Where

http://upgrade.com.mx/_docs/prueba.doc

Is the path of the document on your server.

 5
Author: Ing. Marquez Adam, 2016-03-07 16:02:13