3

我正在尝试使用 Rotativa将文件打印.html为文件。.pdf我试过这段代码:

return new ActionAsPdf("Index") { FileName = "Product.pdf" };

我的索引操作在这里:

public ActionResult Index()
{
    return View(db.Products.ToList());
}

但是,生成的.pdf文件被下载而不是预览。我不想下载它。我想要预览然后打印它。

4

1 回答 1

8

我得到了答案。我需要删除FileName属性。如果我想下载它,我需要添加 FileName 属性,如果我只想看到预览,我需要删除它。代码应该是:

return new ActionAsPdf("Index");
于 2015-07-05T09:05:43.547 回答