尝试通过后面的代码将文本文件写入C:\ Drive时访问拒绝异常

时间:2019-04-03 10:22:57

标签: c# asp.net visual-studio-2012

我需要编程以专门将动态创建的文件保存到客户端系统的C:\ Drive。

我尝试了以下代码

                    context.Response.ContentType = "text/plain";
                    context.Response.AppendHeader("Content-Disposition", "attachment; filename= "TextExport");
                    string path=@"C:\TestFolder";
                    Response.TransmitFile(path);
     try
                    {
                        context.Response.End();

                    }
                    catch (Exception ex)
                    {
                        ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "ExMessage", "alert('" + ex.ToString() + "')", true);
                    }
                    finally
                    {
                        this.Dispose();
                    }

在调试时,我收到异常消息,指出访问被拒绝。

我该怎么办?我特别想保存到C盘

1 个答案:

答案 0 :(得分:0)

如果使用Visual Studio(管理员执行),请检查您是否处于管理模式中;如果使用 IIS ,请检查您的应用程序池是否可以写入您的目录(C:\)。

enter image description here

enter image description here