tags:

views:

34

answers:

1

i have an asp hyperlink i want to link it to a .doc file found on a shared folder.
i was able to do this in internet explorer but not in firefox:
my code:

hlc.NavigateUrl = @"file:\\direct\upload\file.doc";
A: 

Might want to use forwardslashes (as per convention)

hlc.NavigateUrl = @"file:///direct/upload/file.doc";
Femaref
nope, i have already tried that...
hero