How to open a docx file from an asp.net application

G

gwen.demby

Hello, I hope all is well.. I was wondered if someone had a fix for
opening docx file... I am currently using the response.redirect("path
of word document") however it does not work while trying to open docx
files.. I recieve an "HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)" error...
thanks for your help.
 
B

Ben Schwehn

Hello, I hope all is well.. I was wondered if someone had a fix for
opening docx file... I am currently using the response.redirect("path of
word document") however it does not work while trying to open docx
files.. I recieve an "HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)" error... thanks for your help.


Is the "path of word document" a relative path in your virtual directory?
Then Perhaps your iis isn't configured to serve docx files, you can change
that in the iis administration under mime types.

If you're using the filesystem path (like response.redirect(@"c:
\foo.docx")), this doesn't work, instead you could in your asp page open
the file using the System.IO classes and stream it directly into the
Respone.OutputStream.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top