将剃须刀视图转换为pdf文件



我有一个应用程序,管理员可以在电子邮件中完成后在电子邮件中使用订单详细信息,并将副本保存在服务器中。我有一个视图"~/order/MyOrder.cshtml?id=Q5/KCbPNhXKx7EWffTprWg==",用户在登录后可以看到它来检查他们的状态。但是,当订单完成时,管理员向用户发送电子邮件,其中包含订单状态和包含所有信息的pdf文件。我正在尝试从上面提到的视图中创建一个 pdf 文件,并计划将该文件附加到电子邮件中。最好的方法是什么。我在这里看到的解决方案很少,但我无法找到处理这个问题的赌注方法。 我正在使用 ITexSharp 为此。

string html = RenderViewToString(ControllerContext,
"/order/MyOrder.cshtml?Auth=Q5/KCbPNhXKx7EWffTprWg==",
model, true);
using (MemoryStream stream = new System.IO.MemoryStream())
{
StringReader sr = new StringReader(html);
Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 100f, 0f);
PdfWriter writer = PdfWriter.GetInstance(pdfDoc, stream);
pdfDoc.Open();
XMLWorkerHelper.GetInstance().ParseXHtml(writer, pdfDoc, sr);
pdfDoc.Close();
var Filename =  File(stream.ToArray(), "application/pdf", "Grid.pdf");
zip.AddFile(Filename.FileDownloadName, "Pdf");
}

和 RanderViewToString 函数:

static string RenderViewToString(ControllerContext context,
string viewPath,
object model = null,
bool partial = false)
{
// first find the ViewEngine for this view
ViewEngineResult viewEngineResult = null;
if (partial)
viewEngineResult = ViewEngines.Engines.FindPartialView(context, viewPath);
else
viewEngineResult = ViewEngines.Engines.FindView(context, viewPath, null);
if (viewEngineResult == null)
throw new FileNotFoundException("View cannot be found.");
// get the view and attach the model to view data
var view = viewEngineResult.View;
context.Controller.ViewData.Model = model;
string result = null;
using (var sw = new StringWriter())
{
var ctx = new ViewContext(context, view,
context.Controller.ViewData,
context.Controller.TempData,
sw);
view.Render(ctx, sw);
result = sw.ToString();
}
return result;
}

我得到"值不能为空。参数名称:查看"错误。我不确定如何传递带有参数的视图以将其转换为字符串。

我建议你试试罗塔蒂瓦

https://github.com/webgio/Rotativa

public ActionResult PrintIndex()
{
return new ActionAsPdf("Index", new { name = "Giorgio" }) { FileName = "Test.pdf" };
}

最新更新