从WebBrowser控件中打开文件?

时间:2008-11-28 11:12:39

标签: .net winforms webbrowser-control

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

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

我不知道我是否需要一些额外的权限/信任或某些 - 有没有人成功完成此任务或有人建议如何调试这个?

2 个答案:

答案 0 :(得分:2)

我也测试了Ross的解决方案,它也适用于我。

但是这是另一种方法,而不是使用弹出一个要求您下载,打开或取消下载的对话框的内置功能,您可以在应用程序(而不是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" });
    }

}

答案 1 :(得分:1)

我刚尝试使用看起来像的链接 &lt; a href =“file:/// C:\ temp \ browsertest \ bin \ Debug \ testing.xls”&gt; Test&lt; / a&gt;

它按预期工作。

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