如何在新窗口中打开文件?

时间:2012-01-25 08:04:45

标签: c# asp.net

我想通过点击按钮从网页打开文件夹... 在我的代码中,当我使用超链接时,它正常工作。 但是当我使用按钮时它不起作用。

这是我的代码:

 protected void Button1_Click(object sender, EventArgs e)
    {
      Response.Redirect("file://LAP6//C$");

    }

您能否为我提供一些C#代码来实现此功能。 感谢

1 个答案:

答案 0 :(得分:0)

如果您只是想打开某个文件夹,那么您可以尝试这种方式:

protected void Button1_Click(object sender, EventArgs e)     
{

System.Diagnostics.ProcessStartInfo processInfo = new System.Diagnostics.ProcessStartInfo();
        processInfo.FileName = "explorer.exe";
        processInfo.Arguments = Server.MapPath("YourFolderName");
        Response.Write(processInfo.Arguments.ToString());
        System.Diagnostics.Process.Start(processInfo);
}

如果它适合你,请回复我。