我需要编程以专门将动态创建的文件保存到客户端系统的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盘