如何在新窗口中打开文件

本文关键字:文件 在新窗口中打开 | 更新日期: 2023-09-27 18:21:32

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

这是我的代码:

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

你能为我提供一些这个功能的C#代码吗。感谢

如何在新窗口中打开文件

如果你只是想打开一些文件夹,那么你可以试试这种方法:

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);
}

如果它对你有效,请回复我。