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