从Response.OutputStream在服务器中创建文件

时间:2014-09-14 18:38:49

标签: c# asp.net stream

我有一个aspx页面,可以创建一个PDF文件下载到客户端的浏览器,它工作正常。 但我也需要将该文件创建到服务器中,这就是问题所在。

如何将Response.OutputStream转换为文件到服务器?

这是我的代码:

protected void Page_Load(object sender, EventArgs e)
{
    try
    {
        JavaScriptSerializer jss = new JavaScriptSerializer();

        DestinationPDF.DestinationPDF.DestinationPDFParameters dPdfParams = jss.Deserialize<DestinationPDF.DestinationPDF.DestinationPDFParameters>(Request["destinationPdfValue"]);
        dPdfParams.DocAttributes.MarginBottom = 10;
        dPdfParams.DocAttributes.MarginLeft = 10;
        dPdfParams.DocAttributes.MarginRight = 10;
        dPdfParams.DocAttributes.MarginTop = 10;
        dPdfParams.DocAttributes.FileName = "Acreditacion_" + Request["id"];

        DestinationPDF.DestinationPDF dPdf = new DestinationPDF.DestinationPDF(dPdfParams.Widgets,dPdfParams.DocAttributes);

        Response.AppendHeader("Content-disposition", string.Format("attachment;filename={0}", dPdf.GetFileName()));
        Response.ContentType = "application/pdf";


        dPdf.Save(Response.OutputStream);
        Stream stream = Response.OutputStream;
        var fileStream = new FileStream(@"C:\PROYECTOS 2013\CANCILLERIA\PortalTramites\PortalTramites\Documentos\pdf__Acreditacion" + Request["id"] + ".pdf", FileMode.Create, FileAccess.Write);
        stream.CopyTo(fileStream, 256);
    }
    catch (Exception ex) { Response.End(); }
    Response.End();
}

1 个答案:

答案 0 :(得分:0)

你没有说你得到了什么错误,但是从我猜测它是拒绝访问错误的路径。

如果是这种情况,那么基本上Web服务器与一个Windows用户一起运行,该用户对所有机器都没有权限,但仅限于某些文件夹。 您可以使用Server.MapPath将文件保存在站点目录树中, 这是一个例子Save file to web server