You can't convert a file containing textual/document information to a picture without virtually rendering it or something. And I'm sure that's a bit beyond scope so what you want to do isn't possible. If you want to display word files on the browser, I think the best bet is to convert it to a .pdf and then display it in an easier way, although it's not fast either.
These links may have some bases to help you achieve what you want:
http://www.beansoftware.com/ASP.NET-Tutorials/PDF-View-Custom-Control.aspx
https://code.msdn.microsoft.com/windowsapps/Word-file-to-PDF-Conversion-261fd865
In a more complex way, you could use Open Office XML to parse the file and render the relevant contents into the page. Since you want to display the whole document, this might not be the best approach.