Click here to Skip to main content
15,908,768 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I had developed asp.net application, in that i upload ms-office word document. then i did document view in my application, but the document is view in browser was not getting proper style as it is in the document.

please help me...!
Thanks in advance....!
Posted
Updated 27-Dec-13 22:05pm
v2

Use Google Doc Viewer through an iframe and specify the DOC file you want to display. This is the code you should add:

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


Then you just need to set up your own document file to the "url" query string param and that's it!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900