- can firefox launch network folders like IE does?
- Posted by revansx@cox.net on March 7th, 2006
Hi all,
A web-page available only from behind our company firewall provides
links on it's html pages that allows a user to open networked folders
when using IE just as if they had navigated through the network
neighborhood. All users are Windows OS based, but but have been
switching browsers to either Firefox or Mozilla. These hyper-links
don't work for them.
Is it easy to change the link in a way that would work for them?
(firefox users) the way it works so well for IE users
Example:
<a href="\\our.servers.name\project1">Project 1 Network folder</a>
The above example works great for IE users but no one else.
I understand that the basic issue is that IE is "intergrated" into
windows and can do this trick natively, but I am wondering if there are
any other tricks I can do to get it to work for the firefox folks
especially.
Any ideas?
sincerest thanks,
- rich
- Posted by Mark Goodge on March 7th, 2006
On 7 Mar 2006 12:28:00 -0800, revansx@cox.net put finger to keyboard
and typed:
Yeah - just code the link correctly, like this:
<a href="file:///\\our.servers.name\project1">Project 1 Network
folder</a>
IE is guessing at the scheme if it's being given a URL with
backslashes in it (as it's assuming a Windows environment), but
Firefox won't (as it doesn't make that same potentially incorrect
assumption) - it needs to be told that it's file:/// rather than
http:// (or ftp://, or whatever).
Mark
--
Visit: http://www.GoogleFun.info - fun and games with Google!
Listen: http://www.goodge.co.uk/files/dweeb.mp3 - you'll love it!
- Posted by revansx@cox.net on March 7th, 2006
woot!
thanks Mark
- Posted by revansx@cox.net on March 7th, 2006
woot!
thanks Mark
- Posted by Viper on March 8th, 2006
Mark Goodge wrote:
Firefox needs to fix that bug.
- Posted by SpaceGirl on March 8th, 2006
Viper wrote:
It's not a bug. IE just has unusual "asume you are on Windows"
behavior. Fx runs on more than just Windows.


