我正在尝试使用Rotativa将.html
文件打印为.pdf
文件。我试过这段代码:
return new ActionAsPdf("Index") { FileName = "Product.pdf" };
我的索引操作在这里:
public ActionResult Index()
{
return View(db.Products.ToList());
}
但是,下载生成的.pdf
文件而不是预览。我不想下载它。我想要预览然后打印它。
答案 0 :(得分:7)
我得到了答案。我需要删除FileName
属性。如果我想下载它,我需要添加FileName属性,如果我只想看预览,我需要删除它。代码应该只是:
return new ActionAsPdf("Index");