【发布时间】:2010-06-07 19:43:18
【问题描述】:
我有一个 asp 超链接,我想将它链接到在共享文件夹中找到的 .doc 文件。
我可以在 Internet Explorer 中做到这一点,但在 Firefox 中却没有:
我的代码:
hlc.NavigateUrl = @"file:\\direct\upload\file.doc";
【问题讨论】:
我有一个 asp 超链接,我想将它链接到在共享文件夹中找到的 .doc 文件。
我可以在 Internet Explorer 中做到这一点,但在 Firefox 中却没有:
我的代码:
hlc.NavigateUrl = @"file:\\direct\upload\file.doc";
【问题讨论】:
可能想要使用正斜杠(按照惯例)
hlc.NavigateUrl = @"file:///direct/upload/file.doc";
【讨论】: