![]() |
|
|
|||||||
![]() |
HTML - Load<A HREF='document.doc'> in Word - not in Explorer???? |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Hello Gurus
I have an intranet web page with links to all kinds of Microsoft Word document that we use at my work, so my co-works can go to the web page when they need a special document. However, when they click the links the documents are of cause loaded in the web browser MS Explorer and not opened in MS Word, which is annoying. Are there any tricks - in VBScrip, JavaScript, Java or simply in HTML, that let me load a Word-link in Word and not in Explorer? BR /Erik Please, mail any answers not only to the newsgroup, but also to me: Erik Ronne |
|
|
|
|
#2 |
|
Posts: n/a
|
Erik Ronne wrote in message ...
> However, when they click the links the documents are of cause loaded in > the web browser MS Explorer and not opened in MS Word, which is annoying. Assuming that all your 'Word' docs are saved with a filename ending .doc then normally they would automatically be opened in 'Word'. If the intranet URL path is not to the correct filename but to a long *friendly* name then maybe that's why it's happening the way it is. Other than that, the user's preference for opening files on the individual PCs are not set up correctly. |
|
|
|
#3 |
|
Posts: n/a
|
Erik Ronne wrote:
> Hello Gurus > > I have an intranet web page with links to all kinds of Microsoft Word > document that we use at my work, so my co-works can go to the web page when > they need a special document. However, when they click the links the > documents are of cause loaded in the web browser MS Explorer and not opened > in MS Word, which is annoying. > > Are there any tricks - in VBScrip, JavaScript, Java or simply in HTML, that > let me load a Word-link in Word and not in Explorer? > > BR > > /Erik > > Please, mail any answers not only to the newsgroup, but also to me: > > If you have control over the server, and have some sort of server-side processing, you could send the following headers: Content-Disposition: attachment; filename="thefile.doc" Content-type: application/msword Then read and send the file to the client. It is my experience that Internet Explorer will prompt you to save (or open in Microsoft Word, not an embedded control if you have Word installed) the file. -- | Grant Wagner <> * Client-side Javascript and Netscape 4 DOM Reference available at: * http://devedge.netscape.com/library/...ce/frames.html * Internet Explorer DOM Reference available at: * http://msdn.microsoft.com/workshop/a...ence_entry.asp * Netscape 6/7 DOM Reference available at: * http://www.mozilla.org/docs/dom/domref/ * Tips for upgrading JavaScript for Netscape 7 / Mozilla * http://www.mozilla.org/docs/web-deve...upgrade_2.html |
|