我想将生成的文件下载到My Window Web Service的Solutions文件夹中。
我正在使用像::
这样的代码 public void PrintInvoice(long ID)
{
ReportDocument rd = new ReportDocument();
rd.Load(AppDomain.CurrentDomain.BaseDirectory+(@"\Reports\InvoiceDocument.rpt"));
ConnectionInfo ConnInfo = new ConnectionInfo { ServerName = "ServerName", UserID = "UserID", Password = "Password", DatabaseName = "DatabaseName" };
rd.SetParameterValue("InvoiceNumber", 56);
Stream stream = rd.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf", "TestCrystal.pdf");
}
这里我想将生成的PDF文件保存到解决方案本身的文件夹“App_Data”中。 我可以在代码中将该PDF文件保存到解决方案的'App_Data'命名文件夹中吗?