Select to view content in your preferred language

Hyper Link to an MHT file

2341
2
Jump to solution
07-12-2012 12:25 PM
DavidBrooks3
New Contributor
I am attempting to open MHT files from a Flex Viewer 3.0 hyper link.  I have links working that have "http://" urls but have yet to get the below examples to work as a link in the popup XML.  I have dropped an HTM file with the links in the flex application folder and the links open the MHT files fine.  Both links below work fine when the urls are pasted into a browser but the flex links don't even blink.

<A href="mhtml:file://\\000.000.000.0\operations\City.mht!City_files/frame.htm">MHT test 1</a>
<A href="file://000.000.000.0/operations/City.mht">MHT test 2</a>

Any help and direction would be appreciated.
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RhettZufelt
MVP Notable Contributor
have you tried using a virtual folder on your server that points to your operations folder?

This will normally solve that type of issues as you could now use a an actual URL to access the same path like so:

<A href="http://000.000.000.0/operations/City.mht">MHT test 2</a>

R_

View solution in original post

0 Kudos
2 Replies
RhettZufelt
MVP Notable Contributor
have you tried using a virtual folder on your server that points to your operations folder?

This will normally solve that type of issues as you could now use a an actual URL to access the same path like so:

<A href="http://000.000.000.0/operations/City.mht">MHT test 2</a>

R_
0 Kudos
DavidBrooks3
New Contributor
That did the trick.
Thank you!
0 Kudos