ASP.net(C#)で開発をしています。
ActiveReports.netを使用して帳票出力プログラムを作成しています。
帳票出力で問題が発生しています。
実現したい事は、PDF形式で帳票を出力、または表示する事です。
http://www.atmarkit.co.jp/bbs/phpBB/viewtopic.php?topic=28907&forum=7
rpt.Run();
p.Export(rpt.Document, m_stream);
m_stream.Position = 0;
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition","attachment; filename=result.pdf");
Response.BinaryWrite(m_stream.ToArray());
Response.End();