0

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";
Blair Conrad
  • 233,004
  • 25
  • 132
  • 111
hero
  • 1

1 Answers1

0

Might want to use forwardslashes (as per convention)

hlc.NavigateUrl = @"file:///direct/upload/file.doc";
Femaref
  • 60,705
  • 7
  • 138
  • 176