3

有谁知道是否可以通过 WebBrowser 组件中的链接打开文件系统中的文件?我正在编写一个小报告工具,其中我在 WebBrowser 组件中将摘要显示为 HTML,并带有指向更详细分析的链接,该分析保存为磁盘上的 Excel 文件。

我希望用户能够在网络浏览器中单击该链接(目前只是一个标准的 href 标记,以 file://path.xls 作为目标)并得到打开文件的提示。如果我在 IE 中打开我的页面,这是可行的,但在 WebBrowser 控件(C# Windows Forms,.Net 2.0)中没有任何反应。

我不知道我是否需要一些额外的权限/信任或类似的东西 - 有没有人成功地做到了这一点,或者任何人都可以建议如何调试这个?

4

2 回答 2

2

我还测试了罗斯的解决方案,它也对我有用。

但这是另一种方法,您可以在应用程序(不是 HTML 页面)中使用自己的 C# 代码直接打开文件,而不是使用弹出对话框要求您下载、打开或取消下载的内置功能(或者也许做其他事情)。

根据Microsoft MSDN示例:

using System;
using System.Windows.Forms;
using System.Security.Permissions;

[PermissionSet(SecurityAction.Demand, Name="FullTrust")]
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public class Form1 : Form
{
    private WebBrowser webBrowser1 = new WebBrowser();
    private Button button1 = new Button();

    [STAThread]
    public static void Main()
    {
        Application.EnableVisualStyles();
        Application.Run(new Form1());
    }

    public Form1()
    {
        button1.Text = "call script code from client code";
        button1.Dock = DockStyle.Top;
        button1.Click += new EventHandler(button1_Click);
        webBrowser1.Dock = DockStyle.Fill;
        Controls.Add(webBrowser1);
        Controls.Add(button1);
        Load += new EventHandler(Form1_Load);
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        webBrowser1.AllowWebBrowserDrop = false;
        webBrowser1.IsWebBrowserContextMenuEnabled = false;
        webBrowser1.WebBrowserShortcutsEnabled = false;
        webBrowser1.ObjectForScripting = this;
        // Uncomment the following line when you are finished debugging.
        //webBrowser1.ScriptErrorsSuppressed = true;

        webBrowser1.DocumentText =
            "<html><head><script>" +
            "function test(message) { alert(message); }" +
            "</script></head><body><button " +
            "onclick=\"window.external.Test('called from script code')\">" +
            "call client code from script code</button>" +
            "</body></html>";
    }

    public void Test(String message)
    {
        MessageBox.Show(message, "client code");
    }

    private void button1_Click(object sender, EventArgs e)
    {
        webBrowser1.Document.InvokeScript("test",
            new String[] { "called from client code" });
    }

}
于 2008-11-28T11:51:51.570 回答
1

我刚刚尝试了一个看起来像 <a href="file:///C:\temp\browsertest\bin\Debug\testing.xls">Test</a> 的链接

它按预期工作。

您是否指定了 xls 的完整路径?

于 2008-11-28T11:34:15.813 回答