MvcRazorToPdf を使用しようとしましたが、差し込み印刷レターを生成できます。私の目的は、ファイルをダウンロードした後、コントローラーからjsonメッセージを返したいということです。実行する方法?
Controller: [how to convert the below lines to generate pdf and download without return]
return new PdfActionResult(pdfres, (writer, document) =>
{
document.SetPageSize(new Rectangle(PageSize.A4));
document.NewPage();
})
{
FileDownloadName = "ElanWasHere.pdf"
};
私はあなたの助けに感謝します。ありがとう