我正在尝试使用 Rotativa将文件打印.html
为文件。.pdf
我试过这段代码:
return new ActionAsPdf("Index") { FileName = "Product.pdf" };
我的索引操作在这里:
public ActionResult Index()
{
return View(db.Products.ToList());
}
但是,生成的.pdf
文件被下载而不是预览。我不想下载它。我想要预览然后打印它。
我正在尝试使用 Rotativa将文件打印.html
为文件。.pdf
我试过这段代码:
return new ActionAsPdf("Index") { FileName = "Product.pdf" };
我的索引操作在这里:
public ActionResult Index()
{
return View(db.Products.ToList());
}
但是,生成的.pdf
文件被下载而不是预览。我不想下载它。我想要预览然后打印它。