所以我一直在谷歌搜索,没有结果,所以希望有人在这里有关于如何在MVC中创建.pdf和.docx文件的解决方案或建议
非常感谢
答案 0 :(得分:0)
对于mvc创建pdf文件,其中最好的(imho)是
https://github.com/webgio/Rotativa
一些代码示例:
public ActionResult PrintIndex()
{
return new ActionAsPdf("Index", new { name = "Giorgio" }) { FileName = "Test.pdf" };
}
public ActionResult Index(string name)
{
ViewBag.Message = string.Format("Hello {0} to ASP.NET MVC!", name);
return View();
}