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
  • 219,342
  • 25
  • 129
  • 110
hero
  • 1

1 Answers1

0

Might want to use forwardslashes (as per convention)

hlc.NavigateUrl = @"file:///direct/upload/file.doc";
Femaref
  • 59,667
  • 7
  • 131
  • 173